We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daa6a81 commit 17b0cb8Copy full SHA for 17b0cb8
1 file changed
.github/workflows/CI.yml
@@ -30,13 +30,15 @@ jobs:
30
fail-fast: false
31
matrix:
32
configuration: [Release, Debug]
33
- vsver: [2022]
+ vsver: [2019]
34
+ winver: [7]
35
+ sdkver: [10.0.22621.0]
36
steps:
37
- uses: actions/checkout@v4
38
with:
39
submodules: recursive
40
- name: Generate CMake files
- run: cmake -B build -A Win32
41
+ run: cmake -B build -A Win32,version=${{ matrix.sdkver }} -DCMAKE_SYSTEM_VERSION=${{ matrix.winver }}
42
- name: Build
43
run: cmake --build build --config ${{ matrix.configuration }} -j $env:NUMBER_OF_PROCESSORS
44
- name: Prepare artifacts
0 commit comments