Skip to content

Commit

Permalink
Travis: add workspace caching (ivy/sbt)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudolph committed Nov 7, 2018
1 parent ddb4e1e commit bcca8bf
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .travis.yml
@@ -1,18 +1,31 @@
language: scala

scala:
- 2.10.7
- 2.11.12
- 2.12.7
- 2.13.0-M5

script:
- sbt "++ ${TRAVIS_SCALA_VERSION}!" test mimaReportBinaryIssues
jdk:
- oraclejdk8

matrix:
include:
- jdk: openjdk11
scala: 2.12.7

script:
- sbt "++ ${TRAVIS_SCALA_VERSION}!" test mimaReportBinaryIssues

before_cache:
- find $HOME/.ivy2 -name "ivydata-*.properties" -print -delete
- find $HOME/.sbt -name "*.lock" -print -delete

cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot

notifications:
email:
- johannes@spray.io
Expand Down

0 comments on commit bcca8bf

Please sign in to comment.