.travis.yml: don't run any build job on pushes to master

pull/2269/head
nodiscc 2020-10-08 20:24:04 +00:00 committed by GitHub
parent 3b726df161
commit 9a446c31d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,9 @@
language: node_js
branches:
except:
- master
node_js:
- "node"
@ -14,7 +18,6 @@ before_install:
script:
- 'echo "DEBUG: $TRAVIS_BRANCH - $TRAVIS_EVENT_TYPE - $TRAVIS_PULL_REQUEST"'
- 'if [ "$TRAVIS_BRANCH" == "master" ]; then make check_syntax_full; fi'
- 'if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "cron" ]]; then make check_all; fi'
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then make check_pr; fi'