We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 066af41 commit e42f27bCopy full SHA for e42f27b
.github/workflows/push-pull_request.yml
@@ -16,6 +16,9 @@ jobs:
16
- ubuntu
17
- windows
18
- macos
19
+ image_version:
20
+ - latest
21
+ - 2025
22
compiler:
23
- msvc
24
- gcc
@@ -34,7 +37,14 @@ jobs:
34
37
os: macos
35
38
- compiler: gcc
36
39
os: windows
- runs-on: ${{matrix.os}}-latest
40
+ # workarounds for shitty hard requirements in MSVC STL
41
+ - os: ubuntu
42
+ image_version: 2025
43
+ - os: macos
44
45
+ - os: windows
46
+ image_version: latest
47
+ runs-on: ${{matrix.os}}-${{matrix.image_version}}
48
env:
49
CMAKE_CXX_STANDARD: ${{matrix.cxx_standard}}
50
CMAKE_C_STANDARD: ${{matrix.c_standard}}
0 commit comments