forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ci_check_license.sh
executable file
·60 lines (53 loc) · 2.01 KB
/
ci_check_license.sh
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
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
export MOUNT_SOURCE_DIR_FOR_STATIC_CHECKS="true"
export PYTHON_MAJOR_MINOR_VERSION=${PYTHON_MAJOR_MINOR_VERSION:-3.6}
# shellcheck source=scripts/ci/_script_init.sh
. "$( dirname "${BASH_SOURCE[0]}" )/_script_init.sh"
function run_check_license() {
echo
echo "Running Licence check"
echo
# This is the target of a symlink in airflow/www/static/docs -
# and rat exclude doesn't cope with the symlink target doesn't exist
mkdir -p docs/_build/html/
echo "Running license checks. This can take a while."
if ! docker run "${EXTRA_DOCKER_FLAGS[@]}" -t \
--user "$(id -ur):$(id -gr)" \
--rm \
ashb/apache-rat:0.13-1 \
--exclude-file /opt/airflow/.rat-excludes \
--d /opt/airflow | tee "${AIRFLOW_SOURCES}/logs/rat-results.txt" ; then
echo >&2 "RAT exited abnormally"
exit 1
fi
set +e
ERRORS=$(grep -F "??" "${AIRFLOW_SOURCES}/logs/rat-results.txt")
set -e
if test ! -z "${ERRORS}"; then
echo >&2
echo >&2 "Could not find Apache license headers in the following files:"
echo >&2 "${ERRORS}"
exit 1
echo >&2
else
echo "RAT checks passed."
echo
fi
}
run_check_license