diff options
author | nodiscc <nodiscc@gmail.com> | 2021-04-18 12:03:20 +0000 |
---|---|---|
committer | nodiscc <nodiscc@gmail.com> | 2021-04-18 12:03:20 +0000 |
commit | d3177a9684c33f9c4d8fc794b32e84a9f6a64513 (patch) | |
tree | 23f6d22ebabd1d92c007356ee69313150604a6b2 | |
parent | update author information (make contrib) (diff) | |
download | awesome-selfhosted-d3177a9684c33f9c4d8fc794b32e84a9f6a64513.tar.gz awesome-selfhosted-d3177a9684c33f9c4d8fc794b32e84a9f6a64513.zip |
.travis.yml: always run pipeline on master, regardless of whether the job was triggered via cron or manually
- automatic builds on push are still disabled from https://travis-ci.org/github/awesome-selfhosted/awesome-selfhosted/settings
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index f5c5e699..6e2651c4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ before_install: script: - 'echo "DEBUG: $TRAVIS_BRANCH - $TRAVIS_EVENT_TYPE - $TRAVIS_PULL_REQUEST"' - - 'if [[ "$TRAVIS_BRANCH" == "master" && "$TRAVIS_EVENT_TYPE" == "cron" ]]; then make check_all; fi' + - 'if [[ "$TRAVIS_BRANCH" == "master" ]]; then make check_all; fi' - 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then make check_pr; fi' notifications: |