Skip to content

Commit 4816918

Browse files
authored
Fix CI. Explicitly install all three compilers. (#19)
* Fix CI by explicitly installing compilers. Also add GCC 14 to CI.
1 parent 70e417e commit 4816918

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: 'ubuntu-latest'
2525
strategy:
2626
matrix:
27-
cxx: [g++-13, g++-12, g++-11]
27+
cxx: [g++-14, g++-13, g++-12, g++-11]
2828
name: ${{ matrix.cxx }}
2929
env:
3030
CXX: ${{ matrix.cxx }}
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
3636
sudo apt-get update -y
37-
sudo apt-get install g++-13
37+
sudo apt-get install g++-11 g++-12 g++-13 g++-14
3838
cmake -B build
3939
- name: Build
4040
run: make -C build -j `nproc`

0 commit comments

Comments
 (0)