File tree Expand file tree Collapse file tree 1 file changed +20
-28
lines changed
Expand file tree Collapse file tree 1 file changed +20
-28
lines changed Original file line number Diff line number Diff line change @@ -22,40 +22,32 @@ jobs:
2222 matrix :
2323 config :
2424 - {
25- name : " Windows MSVC (Debug)" ,
26- compiler : " msvc" ,
27- cc : " cl" ,
28- cxx : " cl" ,
29- cmake_configure_options : ' -G "Visual Studio 17 2022" -A x64' ,
30- build_type : " Debug" ,
31- cmake_build_options : " --config Debug"
25+ name : " Ubuntu Clang (Debug)" ,
26+ compiler : " clang" ,
27+ cc : " clang-18" ,
28+ cxx : " clang++-18" ,
29+ build_type : " Debug"
3230 }
3331 - {
34- name : " Windows MSVC (Release)" ,
35- compiler : " msvc" ,
36- cc : " cl" ,
37- cxx : " cl" ,
38- cmake_configure_options : ' -G "Visual Studio 17 2022" -A x64' ,
39- build_type : " Release" ,
40- cmake_build_options : " --config Release"
32+ name : " Ubuntu Clang (Release)" ,
33+ compiler : " clang" ,
34+ cc : " clang-18" ,
35+ cxx : " clang++-18" ,
36+ build_type : " Release"
4137 }
4238 - {
43- name : " Windows Clang (Debug)" ,
44- compiler : " clang" ,
45- cc : " clang-cl" ,
46- cxx : " clang-cl" ,
47- cmake_configure_options : ' -G "Ninja" -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_LINKER=lld-link.exe' ,
48- build_type : " Debug" ,
49- cmake_build_options : " --config Debug"
39+ name : " Ubuntu GCC (Debug)" ,
40+ compiler : " gcc" ,
41+ cc : " gcc-14" ,
42+ cxx : " g++-14" ,
43+ build_type : " Debug"
5044 }
5145 - {
52- name : " Windows Clang (Release)" ,
53- compiler : " clang" ,
54- cc : " clang-cl" ,
55- cxx : " clang-cl" ,
56- cmake_configure_options : ' -G "Ninja" -DCMAKE_CXX_COMPILER=clang-cl.exe -DCMAKE_C_COMPILER=clang-cl.exe -DCMAKE_LINKER=lld-link.exe' ,
57- build_type : " Release" ,
58- cmake_build_options : " --config Release"
46+ name : " Ubuntu GCC (Release)" ,
47+ compiler : " gcc" ,
48+ cc : " gcc-14" ,
49+ cxx : " g++-14" ,
50+ build_type : " Release"
5951 }
6052
6153 steps :
You can’t perform that action at this time.
0 commit comments