diff options
author | zvecr <git@zvecr.com> | 2019-04-19 21:20:02 +0100 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-04-19 13:20:02 -0700 |
commit | 50fce7f255fa39c90239c6406f9c6b3ca2050114 (patch) | |
tree | ffaf9a082cb2f8003e4d8e72a1fa912857c298cf /util | |
parent | b60413af60896a7b9d344f9f3dc61904015cb7ca (diff) |
Travis CI - skip unit tests for documentation changes (#5267)
* Add script to skip tests on non master branches with only docs changes
* Review comments - Use 'grep -c' instead of 'wc -l'
Diffstat (limited to 'util')
-rw-r--r-- | util/travis_test.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/util/travis_test.sh b/util/travis_test.sh new file mode 100644 index 0000000000..6c48f898ce --- /dev/null +++ b/util/travis_test.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +TRAVIS_COMMIT_MESSAGE="${TRAVIS_COMMIT_MESSAGE:-none}" +TRAVIS_COMMIT_RANGE="${TRAVIS_COMMIT_RANGE:-HEAD~1..HEAD}" + +# test force push +#TRAVIS_COMMIT_RANGE="c287f1bfc5c8...81f62atc4c1d" + +NUM_IMPACTING_CHANGES=$(git diff --name-only -n 1 ${TRAVIS_COMMIT_RANGE} | grep -Ecv '^(docs/)') +BRANCH=$(git rev-parse --abbrev-ref HEAD) + +if [[ "$TRAVIS_COMMIT_MESSAGE" == *"[skip test]"* ]]; then + echo "Skipping due to commit message" + exit 0 +fi + +if [ "$BRANCH" != "master" ] && [ "$NUM_IMPACTING_CHANGES" == "0" ]; then + echo "Skipping due to changes not impacting tests" + exit 0 +fi + +make test:all |