-
Notifications
You must be signed in to change notification settings - Fork 41
60 lines (54 loc) · 1.63 KB
/
license-checker.yml
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
name: "license checker"
on:
push:
branches:
- master
- /^release-.*$/
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-license-header:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# More info could refer to: https://github.com/apache/skywalking-eyes
- name: Check License Header
uses: apache/skywalking-eyes@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
log: info
config: .licenserc.yaml
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: License check(RAT)
run: |
mvn apache-rat:check -ntp
find ./ -name rat.txt -print0 | xargs -0 -I file cat file > merged-rat.txt
grep "Binaries" merged-rat.txt -C 3 && cat merged-rat.txt
# TODO: enable it later
# check-dependency-license:
# runs-on: ubuntu-latest
# env:
# SCRIPT_DEPENDENCY: computer-dist/scripts/dependency
# steps:
# - name: Checkout source
# uses: actions/checkout@v3
# - name: Set up JDK 11
# uses: actions/setup-java@v3
# with:
# java-version: '11'
# distribution: 'adopt'
# - name: mvn install
# run: |
# mvn install -DskipTests=true -ntp
# - name: generate current dependencies
# run: |
# bash $SCRIPT_DEPENDENCY/regenerate_known_dependencies.sh current-dependencies.txt
# - name: check third dependencies
# run: |
# bash $SCRIPT_DEPENDENCY/check_dependencies.sh