-
Notifications
You must be signed in to change notification settings - Fork 322
117 lines (97 loc) · 3.29 KB
/
Copy pathcompliance.yml
File metadata and controls
117 lines (97 loc) · 3.29 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
106
107
108
109
110
111
112
113
114
115
116
117
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (c) 2020 STMicroelectronics
name: open-amp lib compliance checks
on:
pull_request:
branches: [ main ]
jobs:
checkpatch_review:
name: checkpatch review
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Detect changed files
id: changes
run: |
git fetch origin ${{ github.base_ref }} --depth=1
files=$(git diff --name-only origin/${{ github.base_ref }}...${{ github.event.pull_request.head.sha }})
echo "Changed files:"
printf '%s\n' "$files"
files_spaced=$(echo "$files" | tr '\n' ' ')
files_spaced=$(echo "$files_spaced" | sed 's/[[:space:]]*$//')
echo "files=$files_spaced" >> "$GITHUB_OUTPUT"
- name: Check if only ignored paths changed
id: skip
run: |
IGNORED_PATHS=("docs/" "scripts/" ".github/")
only_ignored="true"
for f in ${{ steps.changes.outputs.files }}; do
echo "Processing file: $f"
is_ignored="false"
for p in "${IGNORED_PATHS[@]}"; do
if [[ "$f" == "$p"* ]]; then
is_ignored="true"
break
fi
done
if [[ "$is_ignored" == "false" ]]; then
only_ignored="false"
break
fi
done
echo "only_ignored=$only_ignored" >> "$GITHUB_OUTPUT"
- name: Skip compliance if only ignored paths changed
if: steps.skip.outputs.only_ignored == 'true'
run: |
echo "Only ignored paths changed; skipping compliance checks."
echo "<testsuite name=\"compliance\" tests=\"0\" failures=\"0\"/>" > compliance.xml
- name: Install python dependencies
if: steps.skip.outputs.only_ignored != 'true'
run: |
pip3 install setuptools
pip3 install python-magic junitparser gitlint codespell lxml
- name: Run Compliance Tests
if: steps.skip.outputs.only_ignored != 'true'
continue-on-error: true
id: compliance
env:
BASE_REF: ${{ github.base_ref }}
run: |
export PATH=$PATH:~/.local/bin
export PROJECT_BASE=$PWD
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git rebase origin/${BASE_REF}
git log --pretty=oneline | head -n 10
./scripts/ci/check_compliance.py --annotate -c origin/${BASE_REF}..
- name: upload-results
uses: actions/upload-artifact@main
continue-on-error: True
with:
name: compliance.xml
path: compliance.xml
- name: check-warns
if: steps.skip.outputs.only_ignored != 'true'
run: |
if [[ ! -s "compliance.xml" ]]; then
exit 1;
fi
files=($(./scripts/ci/check_compliance.py -l))
for file in "${files[@]}"; do
f="${file}.txt"
if [[ -s $f ]]; then
errors=$(cat "$f")
errors="${errors//'%'/'%25'}"
errors="${errors//$'\n'/'%0A'}"
errors="${errors//$'\r'/'%0D'}"
echo "::error file=${f}::$errors"
exit=1
fi
done
if [ "${exit}" == "1" ]; then
exit 1;
fi