Skip to content

Commit b88211f

Browse files
committed
travis: add scancode job
The goal: check license offenders in pull request This is similar to what astyle does in Travis. We get list of files being changed. Because scancode does not support list of files being scanned but rather a file or directory, we copy files to SCANCODE folder. Execute scancode license check in this folder and check for offenders. The rules there are: code files must have a license and SDPX identifier. If they don't, we print these and ask for review.
1 parent bac5ffe commit b88211f

File tree

2 files changed

+76
-3
lines changed

2 files changed

+76
-3
lines changed

.travis.yml

+14-3
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,21 @@ matrix:
5555
- <<: *basic-vm
5656
name: "license check"
5757
env: NAME=licence_check
58+
language: python
59+
python: 3.6.8 # scancode-toolkit v3.1.1 requires v3.6.8
60+
install:
61+
- pip install scancode-toolkit==3.1.1
62+
before_script:
63+
- mkdir -p SCANCODE
5864
script:
59-
- |
60-
! grep --recursive --max-count=100 --ignore-case --exclude .travis.yml \
61-
"gnu general\|gnu lesser\|lesser general\|public license"
65+
# scancode does not support list of files, only one file or directory
66+
# we use SCANCODE directory for all changed files (their copies with full tree)
67+
- >-
68+
git diff --name-only --diff-filter=d FETCH_HEAD..HEAD \
69+
| ( grep '.\(c\|cpp\|h\|hpp\)$' || true ) \
70+
| while read file; do cp --parents "${file}" SCANCODE; done
71+
- scancode-toolkit -l --json-pp scancode.json SCANCODE
72+
- ./tools/test/travis-ci/scancode.py -f scancode.json
6273

6374
- <<: *basic-vm
6475
name: "include check"

tools/test/travis-ci/scancode.py

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
"""
2+
Copyright (c) 2020 Arm Limited. All rights reserved.
3+
4+
SPDX-License-Identifier: Apache-2.0
5+
6+
Licensed under the Apache License, Version 2.0 (the "License");
7+
you may not use this file except in compliance with the License.
8+
You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations
17+
"""
18+
19+
import json
20+
import argparse
21+
import sys
22+
23+
def license_check(file):
24+
25+
offenders = []
26+
27+
# find all licenses in the files, must be licensed and permissive
28+
with open(file, 'r') as scancode_output:
29+
results = json.load(scancode_output)
30+
31+
for file in results['files']:
32+
# ignore directory, not relevant here
33+
if file['type'] == 'directory':
34+
continue
35+
if not file['licenses']:
36+
offenders.append(file)
37+
for i in range(len(file['licenses'])):
38+
if (not file['licenses'][i]['spdx_license_key'] or (file['licenses'][i]['category'] != 'Permissive')):
39+
offenders.append(file['path'])
40+
41+
if offenders:
42+
print("Found files with missing license details, please review and fix")
43+
print(*offenders, sep = ", ")
44+
sys.exit(-1)
45+
else:
46+
sys.exit(0)
47+
48+
def parse_args():
49+
parser = argparse.ArgumentParser(
50+
description="License check.")
51+
parser.add_argument('-f', '--file',
52+
help="scancode-toolkit output json file")
53+
return parser.parse_args()
54+
55+
if __name__ == "__main__":
56+
57+
args = parse_args()
58+
59+
if args.file:
60+
license_check(args.file)
61+
else:
62+
sys.exit("Missing scancode json file to be checked")

0 commit comments

Comments
 (0)