Merge pull request #2967 from ThomasWaldmann/f/travis-stop-1.1

travis: only short-circuit docs-only changes for pull requests
This commit is contained in:
TW 2017-08-25 04:42:38 +02:00 committed by GitHub
commit 4abbc8639c
1 changed files with 6 additions and 4 deletions

View File

@ -44,11 +44,13 @@ matrix:
before_install: before_install:
- | - |
test $TRAVIS_EVENT_TYPE != "pull_request" || {
echo Checking whether $TRAVIS_COMMIT_RANGE changed only docs echo Checking whether $TRAVIS_COMMIT_RANGE changed only docs
git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(AUTHORS|README\.rst|^(docs)/)' || { git diff --name-only $TRAVIS_COMMIT_RANGE | grep --quiet --invert-match --extended-regexp '(AUTHORS|README\.rst|^(docs)/)' || {
echo "Only docs were updated, stopping build process." echo "Only docs were updated, stopping build process."
exit exit
} }
}
install: install:
- git fetch --unshallow --tags - git fetch --unshallow --tags