File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 14
14
CMAKE_GENERATOR : Ninja
15
15
DEFAULT_CXX_STANDARD : 20
16
16
DEFAULT_LLVM_VERSION : 18
17
- DEFAULT_GCC_VERSION : 12
17
+ DEFAULT_GCC_VERSION : 13
18
18
19
19
concurrency :
20
20
group : ${{ github.head_ref || github.run_id }}
@@ -222,18 +222,13 @@ jobs:
222
222
fail-fast : false
223
223
matrix :
224
224
sanitizer : [undefined, address, thread]
225
- compiler : [clang, gcc ]
225
+ compiler : [clang]
226
226
include :
227
227
- compiler : clang
228
228
cc : " clang"
229
229
cxx : " clang++"
230
230
install : wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 18
231
231
toolchain_root : " /usr/lib/llvm-18"
232
- - compiler : gcc
233
- cc : " gcc-12"
234
- cxx : " g++-12"
235
- install : sudo apt update && sudo apt install -y gcc-12
236
- toolchain_root : " /usr"
237
232
238
233
steps :
239
234
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -279,7 +274,7 @@ jobs:
279
274
- uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
280
275
281
276
- name : Install build tools
282
- run : sudo apt update && sudo apt install -y gcc-${{env.DEFAULT_GCC_VERSION}} ninja-build valgrind
277
+ run : sudo apt update && sudo apt install -y gcc-${{env.DEFAULT_GCC_VERSION}} g++-${{env.DEFAULT_GCC_VERSION}} ninja-build valgrind
283
278
284
279
- name : Restore CPM cache
285
280
env :
You can’t perform that action at this time.
0 commit comments