8000 CI Avoid Travis stuck on failure by alfaro96 · Pull Request #19018 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content

CI Avoid Travis stuck on failure #19018

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ jobs:
- BUILD_WHEEL=true
- CIBW_BUILD=cp39-manylinux_aarch64

install: source build_tools/travis/install.sh
script: source build_tools/travis/script.sh
after_success: source build_tools/travis/after_success.sh
install: source build_tools/travis/install.sh || travis_terminate 1
script: source build_tools/travis/script.sh || travis_terminate 1
after_success: source build_tools/travis/after_success.sh || travis_terminate 1

notifications:
webhooks:
Expand Down
0