Merge pull request #188 from CMU-Graphics/spring2025 #252
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows | |
| on: | |
| push: | |
| workflow_dispatch: | |
| env: | |
| NEST_LIBS_VERSION: v0.10 | |
| jobs: | |
| build-windows: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| - uses: ilammy/[email protected] | |
| - name: | |
| shell: cmd | |
| run: | | |
| python .github/workflows/download-file.py https://github.com/15-466/nest-libs/releases/download/%NEST_LIBS_VERSION%/nest-libs-windows-%NEST_LIBS_VERSION%.zip nest-libs.zip | |
| "C:\Program Files\7-Zip\7z.exe" x -o. nest-libs.zip | |
| - name: maek | |
| run: node Maekfile.js | |
| - name: run tests | |
| run: ./Scotty3D --run-tests a1 | |
| - name: student version | |
| run: node export_student_version.js | |
| - name: maek student version | |
| shell: cmd | |
| run: | | |
| cd Scotty3D-student | |
| "C:\Program Files\7-Zip\7z.exe" x -o. ../nest-libs.zip | |
| node Maekfile.js |