-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
105 lines (89 loc) · 3.06 KB
/
Copy pathlinter.yml
File metadata and controls
105 lines (89 loc) · 3.06 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: "Linter"
on:
push:
branches:
- dev
- stable
pull_request:
branches:
- dev
- stable
jobs:
changes:
runs-on: ubuntu-latest
outputs:
clang-format: ${{ steps.filter.outputs.clang-format }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
clang-format:
- '**.cpp'
- '**.c'
- '**.h'
- '.github/workflows/linter.yml'
- 'scripts/clang-format.py'
- '_clang-format'
clang-format:
needs: changes
runs-on: ubuntu-latest
if: ${{ needs.changes.outputs.clang-format == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install wget, software-properties-common, lsb-release (dependencies of LLVM install script)
run: sudo apt --assume-yes install wget software-properties-common lsb-release
- name: Uninstall old conflicting packages
run: sudo apt purge --assume-yes --auto-remove llvm python3-lldb-14 llvm-14
- name: Install automatic LLVM 20
run: wget https://apt.llvm.org/llvm.sh -O /tmp/llvm-install.sh; chmod +x /tmp/llvm-install.sh; sudo /tmp/llvm-install.sh 20
- name: Install clang-format-20
run: sudo apt --assume-yes install clang-format-20
- name: Install gitpython
run: sudo pip install gitpython
- name: Run clang-format
run: |
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-20 200
clang-format --version
python scripts/clang-format.py --check --verbose
clang-tidy:
needs: changes
# if: ${{ needs.changes.outputs.code == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Build Dependencies
run: |
sudo apt update
sudo apt install -y \
build-essential cmake ninja-build meson \
qt6-base-dev qt6-tools-dev \
qt6-tools-dev-tools libqt6svg6-dev libqt6core5compat6-dev \
libqt6svgwidgets6 qt6-l10n-tools \
libgl1-mesa-dev libglu1-mesa-dev
- name: Install automatic LLVM 20
run: wget https://apt.llvm.org/llvm.sh -O /tmp/llvm-install.sh; chmod +x /tmp/llvm-install.sh; sudo /tmp/llvm-install.sh 20
- name: Install clang-tidy-20
run: |
sudo apt --assume-yes install clang-tidy-20
- name: CMake Configuration
run: |
cmake -S . -B build \
-G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCUTTER_QT=6 \
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
- name: Run autogen
run: |
cmake --build build --target Cutter_autogen
- name: Run Clang-Tidy
run: |
sudo update-alternatives --install /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-20 200
sudo update-alternatives --install /usr/bin/run-clang-tidy run-clang-tidy /usr/bin/run-clang-tidy-20 200
clang-tidy -version
python3 scripts/clang-tidy.py