Skip to content

Commit

Permalink
chore: update to gcc 14
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhold committed Oct 26, 2024
1 parent 98ef1b1 commit b7c5c0e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ jobs:
strategy:
matrix:
include:
- compiler-name: GCC 13
cc: gcc-13
cxx: g++-13
- compiler-name: GCC 14
cc: gcc-14
cxx: g++-14
install-script: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt update
sudo apt install -y g++-13
sudo apt install -y g++-14
build-type: Debug
- compiler-name: GCC 13
cc: gcc-13
cxx: g++-13
- compiler-name: GCC 14
cc: gcc-14
cxx: g++-14
install-script: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt update
sudo apt install -y g++-13
sudo apt install -y g++-14
build-type: Release
- compiler-name: Clang 18
cc: clang-18
Expand All @@ -35,7 +35,7 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 18
sudo apt install libstdc++-13-dev
sudo apt install libstdc++-14-dev
build-type: Debug
- compiler-name: Clang 18
cc: clang-18
Expand All @@ -44,7 +44,7 @@ jobs:
wget https://apt.llvm.org/llvm.sh
chmod +x llvm.sh
sudo ./llvm.sh 18
sudo apt install libstdc++-13-dev
sudo apt install libstdc++-14-dev
build-type: Release

steps:
Expand Down

0 comments on commit b7c5c0e

Please sign in to comment.