Skip to content

Commit c648649

Browse files
author
root
committed
Update [CI] Auto Format and Commit
1 parent 5380570 commit c648649

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci-auto-format-and-commit.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,12 @@ jobs:
2828

2929
- name: Install formatter
3030
shell: bash
31+
# [TODO] It seems like ubuntu-latest (24.04) in github actions does not
32+
# have llvm-20 in the apt repository yet. I will change the
33+
# version to 20 when it is available.
3134
run: |
3235
wget https://apt.llvm.org/llvm.sh
33-
sudo chmod +x ./llvm.sh && sudo ./llvm.sh 19
36+
sudo chmod +x ./llvm.sh && sudo ./llvm.sh 19 && rm ./llvm.sh
3437
sudo apt-get update
3538
sudo apt-get install clang-format-19
3639
sudo ln -sf $(which clang-format-19) /usr/bin/clang-format

0 commit comments

Comments
 (0)