Skip to content

Commit

Permalink
CI: add LLVM 19
Browse files Browse the repository at this point in the history
  • Loading branch information
ken-matsui committed Jan 1, 2025
1 parent 53f3e7c commit 4e8ee82
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 18
sudo apt-get install -y clang-format-18
sudo ./llvm.sh 19
sudo apt-get install -y clang-format-19
- name: cabin fmt
run: ./build/cabin fmt --check --verbose
env:
CABIN_FMT: clang-format-18
CABIN_FMT: clang-format-19

lint:
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -72,6 +72,9 @@ jobs:
- name: "Clang 18"
cxx: clang++-18
os: ubuntu-24.04
- name: "Clang 19"
cxx: clang++-19
os: ubuntu-24.04
- name: "GCC 12"
cxx: g++-12
os: ubuntu-24.04
Expand Down Expand Up @@ -177,10 +180,10 @@ jobs:
run: |
wget https://apt.llvm.org/llvm.sh
chmod +x ./llvm.sh
sudo ./llvm.sh 18
sudo apt-get install -y clang-tidy-18
sudo ./llvm.sh 19
sudo apt-get install -y clang-tidy-19
- name: cabin tidy
run: ./build/cabin tidy --verbose
env:
CABIN_TIDY: clang-tidy-18
CABIN_TIDY: clang-tidy-19

0 comments on commit 4e8ee82

Please sign in to comment.