From dea3e236eb7904e7978fe8a1d4b3d240e2d92c45 Mon Sep 17 00:00:00 2001 From: Tristan Brindle Date: Mon, 3 Jun 2024 15:23:48 +0100 Subject: [PATCH] Add GCC14/Linux to CI test matrix --- .github/workflows/linux.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 1124022a..2f3d5fd8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - compiler: [GCC-11, GCC-12, GCC-13, Clang-17] + compiler: [GCC-11, GCC-12, GCC-13, GCC-14, Clang-17] test_with: [Headers, Module] build_type: [Debug, Release] @@ -39,6 +39,11 @@ jobs: install: | brew install gcc@13 ninja binutils brew link --force binutils + - compiler: GCC-14 + cxx: g++-14 + install: | + brew install gcc@14 ninja binutils + brew link --force binutils - compiler: Clang-17 cxx: $(brew --prefix llvm@17)/bin/clang++ install: |