-
Notifications
You must be signed in to change notification settings - Fork 215
65 lines (55 loc) · 1.64 KB
/
clang_tidy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Clang Tidy
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
jobs:
clang-tidy:
runs-on: ubuntu-latest
steps:
- name: Install clang-tidy
run: |
# This LLVM script will add the relevant LLVM PPA: https://apt.llvm.org/
wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh
chmod +x /tmp/llvm.sh
sudo /tmp/llvm.sh 18
sudo apt-get install -y clang-tidy-18
rm /tmp/llvm.sh
clang-tidy-18 --version
- name: Install bear
run: |
sudo apt-get update
sudo apt-get install -y bear
bear --version
- name: Checkout Ice
uses: actions/checkout@v4
with:
repository: zeroc-ice/ice
ref: main
path: ice
- name: Setup Ice Build Dependencies
uses: ./ice/.github/actions/setup-dependencies
- name: Build Ice
uses: ./ice/.github/actions/build
timeout-minutes: 90
with:
working_directory: ice/cpp
build_flags: srcs
- name: Set ICE_HOME
run: |
echo "ICE_HOME=${{ github.workspace }}/ice" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v4
with:
path: ice-demos
- name: Build C++ Demos
timeout-minutes: 30
working-directory: ice-demos/cpp
run: bear -- make
- name: Run Clang Tidy
working-directory: ice-demos/cpp
run: |
find . -name "*.h" -o -name "*.cpp" | xargs run-clang-tidy-18 -j$(nproc) -quiet