Skip to content

Commit

Permalink
Disable tests for msvc release builds due to broken GitHub runner.
Browse files Browse the repository at this point in the history
See comment in the .yml file and
actions/runner-images#10004
  • Loading branch information
Sedeniono committed Jun 8, 2024
1 parent c123463 commit 20c1fd8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test_msvc_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
matrix:
cpp_version: [C++17, C++20]
platform: [x64, Win32]
buildmode: [Debug, Release]
# The Windows GitHub runner is broken for release builds. There are crashes in std::mutex
# because they haven't installed the latest Visual C++ Redistributable after updating
# Visual Studio to 17.10. See https://github.com/actions/runner-images/issues/10004
# Until GitHub updates the runner, we simply disable release builds.
buildmode: [Debug]
#buildmode: [Debug, Release]

include:
- cpp_version: "C++17 permissive"
Expand Down

0 comments on commit 20c1fd8

Please sign in to comment.