Skip to content

Commit 6a101ae

Browse files
pdgendtnashif
authored andcommitted
scripts: ci: check_compliance.py: Add clang-format check
Add a new compliance check that reports any clang-format issues on the git diff and prints a warning. Signed-off-by: Pieter De Gendt <pieter.degendt@basalte.be>
1 parent f21c97a commit 6a101ae

File tree

4 files changed

+53
-7
lines changed

4 files changed

+53
-7
lines changed

.github/workflows/compliance.yml

+14-7
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
pip3 install setuptools
4040
pip3 install wheel
41-
pip3 install python-magic lxml junitparser gitlint pylint pykwalify yamllint
41+
pip3 install python-magic lxml junitparser gitlint pylint pykwalify yamllint clang-format unidiff
4242
pip3 install west
4343
4444
- name: west setup
@@ -94,16 +94,23 @@ jobs:
9494
exit 1;
9595
fi
9696
97+
warns=("ClangFormat")
9798
files=($(./scripts/ci/check_compliance.py -l))
99+
98100
for file in "${files[@]}"; do
99101
f="${file}.txt"
100102
if [[ -s $f ]]; then
101-
errors=$(cat $f)
102-
errors="${errors//'%'/'%25'}"
103-
errors="${errors//$'\n'/'%0A'}"
104-
errors="${errors//$'\r'/'%0D'}"
105-
echo "::error file=${f}::$errors"
106-
exit=1
103+
results=$(cat $f)
104+
results="${results//'%'/'%25'}"
105+
results="${results//$'\n'/'%0A'}"
106+
results="${results//$'\r'/'%0D'}"
107+
108+
if [[ "${warns[@]}" =~ "${file}" ]]; then
109+
echo "::warning file=${f}::$results"
110+
else
111+
echo "::error file=${f}::$results"
112+
exit=1
113+
fi
107114
fi
108115
done
109116

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ tags
7676
BinaryFiles.txt
7777
BoardYml.txt
7878
Checkpatch.txt
79+
ClangFormat.txt
7980
DevicetreeBindings.txt
8081
GitDiffCheck.txt
8182
Gitlint.txt

scripts/ci/check_compliance.py

+36
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import shlex
2020
import shutil
2121
import textwrap
22+
import unidiff
2223

2324
from yamllint import config, linter
2425

@@ -262,6 +263,41 @@ def run(self):
262263
for file in path.glob("**/board.yml"):
263264
self.check_board_file(file, vendor_prefixes)
264265

266+
267+
class ClangFormatCheck(ComplianceTest):
268+
"""
269+
Check if clang-format reports any issues
270+
"""
271+
name = "ClangFormat"
272+
doc = "See https://docs.zephyrproject.org/latest/contribute/guidelines.html#clang-format for more details."
273+
path_hint = "<git-top>"
274+
275+
def run(self):
276+
for file in get_files():
277+
diff = subprocess.Popen(('git', 'diff', '-U0', '--no-color', COMMIT_RANGE, '--', file),
278+
stdout=subprocess.PIPE,
279+
cwd=GIT_TOP)
280+
try:
281+
subprocess.run(('clang-format-diff.py', '-p1'),
282+
check=True,
283+
stdin=diff.stdout,
284+
stdout=subprocess.PIPE,
285+
stderr=subprocess.STDOUT,
286+
cwd=GIT_TOP)
287+
288+
except subprocess.CalledProcessError as ex:
289+
patchset = unidiff.PatchSet.from_string(ex.output, encoding="utf-8")
290+
for patch in patchset:
291+
for hunk in patch:
292+
# Strip the before and after context
293+
msg = "".join([str(l) for l in hunk[3:-3]])
294+
# show the hunk at the last line
295+
self.fmtd_failure("notice",
296+
"You may want to run clang-format on this change",
297+
file, line=hunk.source_start + hunk.source_length - 3,
298+
desc=f'\r\n{msg}')
299+
300+
265301
class DevicetreeBindingsCheck(ComplianceTest):
266302
"""
267303
Checks if we are introducing any unwanted properties in Devicetree Bindings.

scripts/requirements-compliance.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# COMPLIANCE: required by the compliance scripts
22

33
# used by ci/check_compliance
4+
clang-format
45
python-magic
56
python-magic-bin; sys_platform == "win32"
67
lxml
78
junitparser>=2
89
pylint>=3
10+
unidiff
911
yamllint

0 commit comments

Comments
 (0)