Skip to content

Commit

Permalink
ci: bump to LLVM 19
Browse files Browse the repository at this point in the history
  • Loading branch information
cgzones authored and dburgener committed Aug 26, 2024
1 parent a268f67 commit ce47925
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
# Prevent Clang from using DWARF5, not supported by the valgrind version in runners
- name: Set environment for Clang
run: |
echo "CC=clang-17" >> $GITHUB_ENV
echo "CC=clang-19" >> $GITHUB_ENV
echo "CFLAGS=-gdwarf-4 -O2" >> $GITHUB_ENV
if: ${{ matrix.cc == 'clang' }}
- name: install clang repo
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key 2>/dev/null | sudo apt-key add -
sudo add-apt-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-17 main' -y
sudo add-apt-repository 'deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-19 main' -y
sudo apt-get update -q
sudo apt-get install -y clang-17
sudo apt-get install -y clang-19
if: ${{ matrix.cc == 'clang' }}
- name: install dependencies
run: |
Expand Down

0 comments on commit ce47925

Please sign in to comment.