Skip to content

add travis_terminates as recommended by Dale #767

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
Mar 8, 2021
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/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ before_install:
# Travis-CI has (as of March 2021, anyway) an outdated sbt-extras version,
# so overwrite it with a March 2021 version that works with sbt 1.4.8+
- |
curl -sL https://raw.githubusercontent.com/paulp/sbt-extras/dc4f350f112580fcdf5f6fa7e8d5d2116475f84a/sbt > /tmp/sbt-launch-script
chmod +x /tmp/sbt-launch-script
sudo mv /tmp/sbt-launch-script /usr/local/bin/sbt
curl -sL https://raw.githubusercontent.com/paulp/sbt-extras/dc4f350f112580fcdf5f6fa7e8d5d2116475f84a/sbt > /tmp/sbt-launch-script || travis_terminate 1
chmod +x /tmp/sbt-launch-script || travis_terminate 1
sudo mv /tmp/sbt-launch-script /usr/local/bin/sbt || travis_terminate 1

before_cache:
- rm -fv $HOME/.ivy2/.sbt.ivy.lock
Expand Down