Skip to content

Commit

Permalink
ci: investigate msvc compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Sep 6, 2023
1 parent 9d9c0d4 commit c0b4bac
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/amd64_windows_cmake_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
windows-2022,
#windows-2019,
]
build: [
["Visual Studio 17 2022", "v143,version=14.37"],
["Visual Studio 17 2022", "v143,version=14.36"],
["Visual Studio 17 2022", "v143,version=14.35"],
]
fail-fast: false # Don't cancel all jobs if one fails.
runs-on: ${{ matrix.runner }}
#runs-on: windows-latest
Expand All @@ -22,7 +27,11 @@ jobs:
cmake --version
cmake -G || true
- name: Configure
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DBUILD_DEPS=ON
run: >
cmake -S. -Bbuild
-G "${{ matrix.build[0] }}" -T ${{ matrix.build[1] }}
-DCMAKE_BUILD_TYPE=Release
-DBUILD_DEPS=ON
- name: Build
run: cmake --build build --config Release --target ALL_BUILD -v -- /verbosity:d
- name: Test
Expand Down

0 comments on commit c0b4bac

Please sign in to comment.