File tree 1 file changed +71
-0
lines changed
1 file changed +71
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Compliance
2
+
3
+ on :
4
+ pull_request :
5
+ types :
6
+ - edited
7
+ - opened
8
+ - reopened
9
+ - synchronize
10
+
11
+ jobs :
12
+ build :
13
+ runs-on : ubuntu-22.04
14
+ steps :
15
+ - name : Checkout
16
+ uses : actions/checkout@v4
17
+ with :
18
+ ref : ${{ github.event.pull_request.head.sha }}
19
+ fetch-depth : 0
20
+ path : zephyr-silabs
21
+
22
+ - name : Set up Python
23
+ uses : actions/setup-python@v5
24
+ with :
25
+ python-version : 3.11
26
+
27
+ - name : Setup Zephyr project
28
+ uses : zephyrproject-rtos/action-zephyr-setup@v1
29
+ with :
30
+ app-path : zephyr-silabs
31
+ toolchains : arm-zephyr-eabi
32
+
33
+ - name : Run Compliance Tests
34
+ continue-on-error : true
35
+ id : compliance
36
+ working-directory : zephyr-silabs
37
+ run : |
38
+ export ZEPHYR_BASE="$(dirname "$(pwd)")/zephyr"
39
+ $ZEPHYR_BASE/scripts/ci/check_compliance.py --annotate -e Kconfig -e KconfigBasic -c origin/${GITHUB_BASE_REF}..
40
+
41
+ - name : upload-results
42
+ uses : actions/upload-artifact@v3
43
+ continue-on-error : true
44
+ with :
45
+ name : compliance.xml
46
+ path : zephyr-silabs/compliance.xml
47
+
48
+ - name : check-warns
49
+ working-directory : zephyr-silabs
50
+ run : |
51
+ export ZEPHYR_BASE="$(dirname "$(pwd)")/zephyr"
52
+ if [[ ! -s "compliance.xml" ]]; then
53
+ exit 1;
54
+ fi
55
+
56
+ files=($($ZEPHYR_BASE/scripts/ci/check_compliance.py -l))
57
+ for file in "${files[@]}"; do
58
+ f="${file}.txt"
59
+ if [[ -s $f ]]; then
60
+ errors=$(cat $f)
61
+ errors="${errors//'%'/'%25'}"
62
+ errors="${errors//$'\n'/'%0A'}"
63
+ errors="${errors//$'\r'/'%0D'}"
64
+ echo "::error file=${f}::$errors"
65
+ exit=1
66
+ fi
67
+ done
68
+
69
+ if [ "${exit}" == "1" ]; then
70
+ exit 1;
71
+ fi
You can’t perform that action at this time.
0 commit comments