You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 14, 2023. It is now read-only.
Want an easy introduction to becoming a F/OSS contributor?
Fix the Travis CI script, then submit a PR!
See the build errors at https://travis-ci.org/mslinn/quill-cache
I sent an email July 20, 2017 to support@travis-ci.com with the following information, but I have not received a response yet.
I see that TravisCI finds all dependencies and tests start ... and then that process does not get any more CPU time, like a scheduler forgot about that thread. 10 minutes goes by and nothing happens, then the build times out.
This is my .travis.yml:
language: scala
scala:
- 2.12.2
jdk:
- oraclejdk8
So I tried this:
language: scala
scala:
- 2.12.2
jdk:
- oraclejdk8
script:
- travis_wait sbt ++$TRAVIS_SCALA_VERSION test
# Use container-based infrastructure
sudo: false
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt
before_cache:
# Cleanup the cached directories to avoid unnecessary cache updates
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete
- find $HOME/.sbt -name "*.lock" -print -delete
Same result. Fundamentally, whatever causes the build to stop needs to be taken care of. Is this a Travis CI bug?
Want an easy introduction to becoming a F/OSS contributor?
Fix the Travis CI script, then submit a PR!
See the build errors at https://travis-ci.org/mslinn/quill-cache
I sent an email July 20, 2017 to support@travis-ci.com with the following information, but I have not received a response yet.
I see that TravisCI finds all dependencies and tests start ... and then that process does not get any more CPU time, like a scheduler forgot about that thread. 10 minutes goes by and nothing happens, then the build times out.
This is my .travis.yml:
So I tried this:
Same result. Fundamentally, whatever causes the build to stop needs to be taken care of. Is this a Travis CI bug?