Skip to content

Commit

Permalink
CI: Add package step for windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamievlin committed Feb 15, 2024
1 parent 315f32d commit 66f8520
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-asy-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,3 +132,23 @@ jobs:
path: cmake-build-msvc/release/
- name: asy test
run: ctest --test-dir cmake-build-msvc/release -R "^asy.*" -E "asy.(gc.*|pic.trans)"
package-asymptote-artifacts-win:
needs: [ test-windows-msvc-x64-cxxtests, test-windows-msvc-x64-asy-tests ]
runs-on: "windows-2022"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Download build artifacts
uses: actions/download-artifact@v3
with:
name: asy-win-x64-buildfiles
path: zip-stage
- name: Copy examples to zip-stage
run: Copy-Item -Path examples -Destination zip-stage/examples
- name: Archive Asymptote test files
uses: actions/upload-artifact@v3
with:
name: asymptote-build-windows
path: |
zip-stage/*

0 comments on commit 66f8520

Please sign in to comment.