Skip to content

Commit

Permalink
Use latest clang and clang-tidy for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
azrogers committed Dec 18, 2024
1 parent 3442828 commit 6abd62b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
uses: hendrikmuhs/ccache-action@v1.2.9
with:
key: ccache-ubuntu-24.04-clang-clang-tidy
- name: Install latest clang and clang-tidy
run: |
bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
- name: Cache vcpkg artifacts
uses: actions/cache@v4
with:
Expand All @@ -35,8 +38,8 @@ jobs:
vcpkg-ubuntu-24.04-clang
- name: Set CC and CXX
run: |
echo "CC=clang-18" >> "$GITHUB_ENV"
echo "CXX=clang++-18" >> "$GITHUB_ENV"
echo "CC=clang-19" >> "$GITHUB_ENV"
echo "CXX=clang++-19" >> "$GITHUB_ENV"
- name: Make more swap space available
run: |
sudo swapoff -a
Expand Down

0 comments on commit 6abd62b

Please sign in to comment.