Skip to content

Commit 3587251

Browse files
[cicd] use stable clang 14 while 15 broken
1 parent 46a9262 commit 3587251

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/clang_tidy.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414
uses: actions/checkout@v3.1.0
1515
- name: Install
1616
run: |
17-
wget https://apt.llvm.org/llvm.sh
18-
chmod +x llvm.sh
19-
sudo ./llvm.sh 15 all
2017
( cd /tmp
2118
git clone --depth 1 "https://gitlab.com/libeigen/eigen"
2219
cmake -S "eigen" -B "eigen/build"
@@ -40,7 +37,7 @@ jobs:
4037
- name: Verify
4138
run: |
4239
FILES="include/fcarouge/kalman.hpp benchmark/include/benchmark.hpp"
43-
clang-tidy-15 ${FILES} --warnings-as-errors=* -- \
40+
clang-tidy ${FILES} --warnings-as-errors=* -- \
4441
-x c++ -Iinclude \
4542
-I/usr/local/include/eigen3 \
4643
-Isupport \

.github/workflows/format.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ jobs:
1414
uses: actions/checkout@v3
1515
- name: "Install"
1616
run: |
17-
wget https://apt.llvm.org/llvm.sh
18-
chmod +x llvm.sh
19-
sudo ./llvm.sh 15 all
2017
pip install cmakelang
2118
- name: "Test"
2219
run: |
2320
find . -iname "*.hpp" -o -iname "*.tpp" -o -iname "*.cpp" -o -iwholename "./support/format" | xargs \
24-
clang-format-15 --Werror --dry-run --verbose -style=file
21+
clang-format --Werror --dry-run --verbose -style=file
2522
cmake-format --check CMakeLists.txt

0 commit comments

Comments
 (0)