Fixed install path. #338
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 Visual Studio | |
| on: [push, pull_request] | |
| env: | |
| PYTHON_VERSION: 3.13 | |
| CMAKE_GENERATOR: Visual Studio 17 2022 | |
| NJOBS: 4 | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| defaults: | |
| run: | |
| shell: cmd | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Add msbuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Install Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Install dependencies | |
| run: ports\ci\windows-vs\install_deps.bat | |
| - name: Build | |
| run: ports\ci\windows-vs\build.bat | |
| - name: Deploy | |
| run: ports\ci\windows-vs\deploy.bat | |
| - name: Test | |
| run: ports\ci\windows-vs\test.bat |