Skip to content

Commit

Permalink
Test both Clang 16 and Clang 17 on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
tcbrindle committed Jan 25, 2024
1 parent 053eec0 commit 55d1069
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,30 @@ jobs:
strategy:
matrix:
build_type: [Debug, Release]
cxx: [g++-11, g++-12, g++-13, clang++]
compiler: [GCC-11, GCC-12, GCC-13, Clang-16, Clang-17]
include:
- cxx: g++-11
- compiler: GCC-11
cxx: g++-11
install: |
brew install gcc@11 ninja binutils
brew link --force binutils
- cxx: g++-12
- compiler: GCC-12
cxx: g++-12
install: |
brew install gcc@12 ninja binutils
brew link --force binutils
- cxx: g++-13
- compiler: GCC-13
cxx: g++-13
install: |
brew install gcc@13 ninja binutils
brew link --force binutils
- cxx: clang++
- compiler: Clang-16
cxx: clang++
install: |
brew install llvm@16 ninja binutils
brew link --force binutils
- compiler: Clang-17
cxx: clang++
install: |
brew install llvm@17 ninja binutils
brew link --force binutils
Expand Down

0 comments on commit 55d1069

Please sign in to comment.