tools: travis: skip the build if only markdown files are changed (2)

This commit is contained in:
Simon Michael 2017-07-12 07:54:56 +01:00
parent f8674f46c0
commit 15e8d77968

View File

@ -7,8 +7,7 @@ set -e
# works only on master ? # works only on master ?
CHANGED_FILES=`git diff --name-only master...${TRAVIS_COMMIT}` CHANGED_FILES=`git diff --name-only master...${TRAVIS_COMMIT}`
# only files not matching this pattern will trigger a build # only files not matching this extended regex will trigger a build
# extended regex, don't quote regex metachars
#SKIP_PAT="(^site/con|do.nload)" #SKIP_PAT="(^site/con|do.nload)"
SKIP_PAT="\.md$" SKIP_PAT="\.md$"
@ -21,6 +20,13 @@ for F in $CHANGED_FILES; do
fi fi
done done
# standard travis helper, not in scope for some reason
travis_terminate() {
set +e
pkill -9 -P $$ &> /dev/null || true
exit $1
}
if [[ $SKIP == True ]]; then if [[ $SKIP == True ]]; then
echo "Only skippable files found, exiting." echo "Only skippable files found, exiting."
travis_terminate 0 travis_terminate 0