We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d354c9 commit 971e3a9Copy full SHA for 971e3a9
.travis.yml
@@ -1,4 +1,5 @@
1
-if: tag IS present OR type = pull_request OR (branch = master AND type = push) # we only CI the master, tags and PRs
+# we only CI the master, release branches, tags and PRs
2
+if: tag IS present OR type = pull_request OR ((branch = master OR branch =~ release-*) AND type = push)
3
4
language: python
5
# cache package wheels (1 cache per python version)
@@ -38,7 +39,7 @@ jobs:
38
39
- EXTRA_ARGS=
40
- name: "trigger a build of wheels"
41
python: 3.7
- script: if [[ $TRAVIS_BRANCH = "master" && $TRAVIS_PULL_REQUEST = "false" ]]; then ./misc/trigger_wheel_build.sh; fi
42
+ script: if [[ ($TRAVIS_BRANCH = "master" || $TRAVIS_BRANCH =~ release-*) && $TRAVIS_PULL_REQUEST = "false" ]]; then ./misc/trigger_wheel_build.sh; fi
43
44
install:
45
- pip install -U pip setuptools
0 commit comments