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 c20801c commit 51dd0fcCopy full SHA for 51dd0fc
.travis.yml
@@ -1,5 +1,3 @@
1
-if: tag IS present
2
-
3
env:
4
global:
5
- CONFIG_PATH=wheels/config.sh
@@ -112,6 +110,12 @@ jobs:
112
110
- MB_PYTHON_VERSION=3.12
113
111
114
before_install:
+ - if [[ "$TRAVIS_TAG" == "" && "$TRAVIS_EVENT_TYPE" != "api" ]]; then
+ CHANGED_FILES=$(git diff --name-only HEAD~1...HEAD);
115
+ if ! [[ "$CHANGED_FILES" =~ .github/workflows/wheels*.yml || "$CHANGED_FILES" =~ wheels/* ]]; then
116
+ travis_terminate 0;
117
+ fi
118
119
- source wheels/multibuild/common_utils.sh
120
- source wheels/multibuild/travis_steps.sh
121
- before_install
0 commit comments