Skip to content

Commit

Permalink
Use clang-18 on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ClausKlein committed Jun 29, 2024
1 parent 3c00a77 commit 8446e49
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install llvm-17
- name: Install llvm-18
run: |
brew install llvm ninja
export PATH=$(brew --prefix llvm@17)/bin:$PATH && echo "PATH=$PATH" >> $GITHUB_ENV
brew install llvm ninja codespell cmake ninja
export PATH=$(brew --prefix llvm@18)/bin:$PATH && echo "PATH=$PATH" >> $GITHUB_ENV
echo "CXX=clang++" >> $GITHUB_ENV
echo "CC=clang-18" >> $GITHUB_ENV
- name: Build
run: make

0 comments on commit 8446e49

Please sign in to comment.