Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Viatorus committed Sep 19, 2024
1 parent 04527aa commit b790d6a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
env: [ {os: ubuntu-22.04, compiler: gcc-11},
{os: ubuntu-22.04, compiler: gcc-12},
{os: ubuntu-24.04, compiler: gcc-13},
{os: ubuntu-24.04, compiler: gcc-14},
{os: ubuntu-22.04, compiler: clang-16},
{os: ubuntu-22.04, compiler: clang-17},
{os: ubuntu-24.04, compiler: clang-18},
Expand Down Expand Up @@ -93,13 +94,13 @@ jobs:
echo "CXX=clang++-17" >> $GITHUB_ENV
elif [[ "$compiler" == "clang-18" ]]; then
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository 'deb http://apt.llvm.org/nobel/ llvm-toolchain-noble-18 main'
sudo add-apt-repository 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble-18 main'
sudo apt update && sudo apt install -y clang-18
echo "CC=clang-18" >> $GITHUB_ENV
echo "CXX=clang++-18" >> $GITHUB_ENV
elif [[ "$compiler" == "clang-19" ]]; then
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository 'deb http://apt.llvm.org/nobel/ llvm-toolchain-noble-19 main'
sudo add-apt-repository 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble-19 main'
sudo apt update && sudo apt install -y clang-19
echo "CC=clang-19" >> $GITHUB_ENV
echo "CXX=clang++-19" >> $GITHUB_ENV
Expand Down

0 comments on commit b790d6a

Please sign in to comment.