-
-
Notifications
You must be signed in to change notification settings - Fork 74
31 lines (28 loc) · 720 Bytes
/
windows-vs.yml
File metadata and controls
31 lines (28 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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@v6
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v3
- name: Install Python
uses: actions/setup-python@v6
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