Skip to content

Commit

Permalink
Add GCC14/Linux to CI test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tcbrindle committed Jun 3, 2024
1 parent b1297e5 commit 895481c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand All @@ -22,6 +22,8 @@ jobs:
test_with: Module
- compiler: GCC-13
test_with: Module
- compiler: GCC-14
test_with: Module

include:
- compiler: GCC-11
Expand All @@ -39,6 +41,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: |
Expand Down

0 comments on commit 895481c

Please sign in to comment.