forked from apache/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch adds license checking for Airflow. For now it will store a…
… number in Travis' cache to make sure current builds do not fail but newly added files should have a license header included.
- Loading branch information
1 parent
6832671
commit 94142ea
Showing
4 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,4 @@ sftp-config.json | |
unittests.cfg | ||
error.log | ||
unittests.db | ||
rat-results.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
.gitignore | ||
.gitattributes | ||
.coverage | ||
.coveragerc | ||
.coveralls.yml | ||
.rat-excludes | ||
requirements.txt | ||
.*log | ||
.travis.yml | ||
.*pyc | ||
docs | ||
.*md | ||
dist | ||
build | ||
airflow.egg-info | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
#!/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. | ||
# | ||
|
||
|
||
acquire_rat_jar () { | ||
|
||
URL="http://repo1.maven.org/maven2/org/apache/rat/apache-rat/${RAT_VERSION}/apache-rat-${RAT_VERSION}.jar" | ||
|
||
JAR="$rat_jar" | ||
|
||
# Download rat launch jar if it hasn't been downloaded yet | ||
if [ ! -f "$JAR" ]; then | ||
# Download | ||
printf "Attempting to fetch rat\n" | ||
JAR_DL="${JAR}.part" | ||
if [ $(command -v curl) ]; then | ||
curl -L --silent "${URL}" > "$JAR_DL" && mv "$JAR_DL" "$JAR" | ||
elif [ $(command -v wget) ]; then | ||
wget --quiet ${URL} -O "$JAR_DL" && mv "$JAR_DL" "$JAR" | ||
else | ||
printf "You do not have curl or wget installed, please install rat manually.\n" | ||
exit -1 | ||
fi | ||
fi | ||
|
||
unzip -tq "$JAR" &> /dev/null | ||
if [ $? -ne 0 ]; then | ||
# We failed to download | ||
rm "$JAR" | ||
printf "Our attempt to download rat locally to ${JAR} failed. Please install rat manually.\n" | ||
exit -1 | ||
fi | ||
} | ||
|
||
# Go to the Airflow project root directory | ||
FWDIR="$(cd "`dirname "$0"`"/../..; pwd)" | ||
cd "$FWDIR" | ||
|
||
if [ -z "${TRAVIS_CACHE}" ]; then | ||
TRAVIS_CACHE=/tmp | ||
fi | ||
|
||
if test -x "$JAVA_HOME/bin/java"; then | ||
declare java_cmd="$JAVA_HOME/bin/java" | ||
else | ||
declare java_cmd=java | ||
fi | ||
|
||
export RAT_VERSION=0.11 | ||
export rat_jar="${TRAVIS_CACHE}"/lib/apache-rat-${RAT_VERSION}.jar | ||
mkdir -p ${TRAVIS_CACHE}/lib | ||
|
||
|
||
[[ -f "$rat_jar" ]] || acquire_rat_jar || { | ||
echo "Download failed. Obtain the rat jar manually and place it at $rat_jar" | ||
exit 1 | ||
} | ||
|
||
$java_cmd -jar "$rat_jar" -E "$FWDIR"/.rat-excludes -d "$FWDIR" > rat-results.txt | ||
|
||
if [ $? -ne 0 ]; then | ||
echo "RAT exited abnormally" | ||
exit 1 | ||
fi | ||
|
||
ERRORS="$(cat rat-results.txt | grep -e "??")" | ||
|
||
if test ! -z "$ERRORS"; then | ||
echo "Could not find Apache license headers in the following files:" | ||
echo "$ERRORS" | ||
COUNT=`echo "${ERRORS}" | wc -l` | ||
if [ ! -f ${TRAVIS_CACHE}/rat-error-count ]; then | ||
echo ${COUNT} > ${TRAVIS_CACHE}/rat-error-count | ||
fi | ||
typeset -i OLD_COUNT=$(cat ${TRAVIS_CACHE}/rat-error-count) | ||
if [ ${COUNT} -gt ${OLD_COUNT} ]; then | ||
echo "New missing licenses detected. Please correct them by adding them to to header of your files" | ||
exit 1 | ||
else | ||
echo ${COUNT} > ${TRAVIS_CACHE}/rat-error-count | ||
fi | ||
exit 0 | ||
else | ||
echo -e "RAT checks passed." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters