Skip to content

Commit 3b625aa

Browse files
committed
ci: add license check using github actions
Use Github for license checks. Signed-off-by: Anas Nashif <[email protected]>
1 parent e089906 commit 3b625aa

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

Diff for: .github/license_config.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
license:
2+
main: apache-2.0
3+
report_missing: true
4+
category: Permissive
5+
copyright:
6+
check: true
7+
exclude:
8+
extensions:
9+
- yml
10+
- yaml
11+
- html
12+
- rst
13+
- conf
14+
- cfg
15+
langs:
16+
- HTML

Diff for: .github/workflows/license_check.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Scancode
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
scancode_job:
7+
runs-on: ubuntu-latest
8+
name: Scan code for licenses
9+
steps:
10+
- name: Checkout the code
11+
uses: actions/checkout@v1
12+
- name: Scan the code
13+
id: scancode
14+
uses: zephyrproject-rtos/action_scancode@v2
15+
with:
16+
directory-to-scan: 'scan/'
17+
- name: Artifact Upload
18+
uses: actions/upload-artifact@v1
19+
with:
20+
name: scancode
21+
path: ./artifacts
22+
23+
- name: Verify
24+
run: |
25+
if [ -s ./artifacts/report.txt ]; then
26+
report=$(cat ./artifacts/report.txt)
27+
report="${report//'%'/'%25'}"
28+
report="${report//$'\n'/'%0A'}"
29+
report="${report//$'\r'/'%0D'}"
30+
echo "::error file=./artifacts/report.txt::$report"
31+
exit 1
32+
fi

0 commit comments

Comments
 (0)