File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,10 @@ jobs:
17
17
gcc :
18
18
strategy :
19
19
matrix :
20
- gcc_version : [ 10, 11, 12 ]
20
+ gcc_version : [ 12, 13, 14 ]
21
21
build_type : [ Debug, Release ]
22
22
cxx_version : [ 14, 17, 20, 23 ]
23
23
exclude :
24
- - gcc_version : 10
25
- cxx_version : 23
26
24
# https://github.com/google/googletest/issues/4232
27
25
# Looks like GoogleTest is not interested in making version 1.14
28
26
# work with gcc-12.
44
42
clang :
45
43
strategy :
46
44
matrix :
47
- clang_version : [ 13, 14, 15 ]
45
+ clang_version : [ 16, 17, 18 ]
48
46
build_type : [ Debug, Release ]
49
47
cxx_version : [ 14, 17, 20, 23 ]
48
+ exclude :
49
+ # https://github.com/llvm/llvm-project/issues/93734
50
+ # Looks like clang fixed this issue in clang-18, but won't backport
51
+ # the fix.
52
+ - clang_version : 17
53
+ cxx_version : 23
50
54
runs-on : ubuntu-latest
51
55
steps :
52
56
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -93,9 +93,9 @@ Below is a table showing the versions currently being tested (also see [.github/
93
93
94
94
Compiler |Toolset Versions Currently Tested
95
95
:------- |--:
96
- GCC | 10, 11, 12
96
+ GCC | 12, 13, 14
97
97
XCode | 14.3.1, 15.4
98
- Clang | 13, 14, 15
98
+ Clang | 16, 17, 18
99
99
Visual Studio with MSVC | VS2019, VS2022
100
100
Visual Studio with LLVM | VS2019, VS2022
101
101
You can’t perform that action at this time.
0 commit comments