Skip to content

Commit

Permalink
ci: Remove /std:c++latest from MSVC build variants
Browse files Browse the repository at this point in the history
This should work around the Internal Compiler Error
due to std::vector<std::vector<bool>>, see
#645
  • Loading branch information
mloskot committed Apr 12, 2022
1 parent 09c3464 commit 8d83cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,15 @@ jobs:
matrix:
include:
- toolset: msvc-14.2
cxxstd: "14,17,latest"
cxxstd: "14,17"
addrmd: 32,64
os: windows-2019
- toolset: gcc
cxxstd: "11,14,17,2a"
addrmd: 64
os: windows-2019
- toolset: msvc-14.3
cxxstd: "14,17,latest"
cxxstd: "14,17"
addrmd: 32,64
os: windows-2022

Expand Down

0 comments on commit 8d83cdc

Please sign in to comment.