Exit Travis when only Misc/* is changed. (#564)

No need to wait passing tests after resolving Misc/NEWS conflicts.
This commit is contained in:
Serhiy Storchaka 2017-03-08 20:22:16 +02:00 committed by GitHub
parent a7cba27aea
commit 4a2ffce791
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ matrix:
- TESTING=coverage - TESTING=coverage
before_script: before_script:
- | - |
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.(rst|yml)$)|(^Doc)/' if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.(rst|yml)$)|(^Doc)|(^Misc)/'
then then
echo "Only docs were updated, stopping build process." echo "Only docs were updated, stopping build process."
exit exit
@ -77,7 +77,7 @@ matrix:
# Travis provides only 2 cores, so don't overdue the parallelism and waste memory. # Travis provides only 2 cores, so don't overdue the parallelism and waste memory.
before_script: before_script:
- | - |
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.(rst|yml)$)|(^Doc)/' if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.(rst|yml)$)|(^Doc)|(^Misc)/'
then then
echo "Only docs were updated, stopping build process." echo "Only docs were updated, stopping build process."
exit exit