Skip to content

Commit c7186ba

Browse files
authored
Merge pull request #594 from elbeno/gcc-san-13
2 parents ba416c1 + efada41 commit c7186ba

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/unit_tests.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
CMAKE_GENERATOR: Ninja
1515
DEFAULT_CXX_STANDARD: 20
1616
DEFAULT_LLVM_VERSION: 18
17-
DEFAULT_GCC_VERSION: 12
17+
DEFAULT_GCC_VERSION: 13
1818

1919
concurrency:
2020
group: ${{ github.head_ref || github.run_id }}
@@ -222,18 +222,13 @@ jobs:
222222
fail-fast: false
223223
matrix:
224224
sanitizer: [undefined, address, thread]
225-
compiler: [clang, gcc]
225+
compiler: [clang]
226226
include:
227227
- compiler: clang
228228
cc: "clang"
229229
cxx: "clang++"
230230
install: wget https://apt.llvm.org/llvm.sh && chmod +x llvm.sh && sudo ./llvm.sh 18
231231
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"
237232

238233
steps:
239234
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
@@ -279,7 +274,7 @@ jobs:
279274
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
280275

281276
- 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
283278

284279
- name: Restore CPM cache
285280
env:

0 commit comments

Comments
 (0)