Skip to content

Fixed install path. #338

Fixed install path.

Fixed install path. #338

Workflow file for this run

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