We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc7f395 commit 993ece2Copy full SHA for 993ece2
1 file changed
.github/workflows/CI-windows.yml
@@ -21,13 +21,16 @@ jobs:
21
os: [windows-2022, windows-2025, windows-11-arm]
22
config: [Release, Debug]
23
generator: ["Visual Studio 17 2022"]
24
+ sln: ["sln"]
25
include:
26
- os: windows-2025-vs2026
27
config: Release
28
generator: "Visual Studio 18 2026"
29
+ sln: ["slnx"]
30
31
config: Debug
32
33
34
fail-fast: false
35
36
runs-on: ${{ matrix.os }}
@@ -57,7 +60,7 @@ jobs:
57
60
58
61
- name: Build
59
62
run: |
- msbuild -m simplecpp.sln /p:Configuration=${{ matrix.config }} /p:Platform=x64 || exit /b !errorlevel!
63
+ msbuild -m simplecpp.${{ matrix.sln }} /p:Configuration=${{ matrix.config }} /p:Platform=x64 || exit /b !errorlevel!
64
65
- name: Test
66
0 commit comments