Skip to content

Commit

Permalink
Merge pull request #285 from spray/jrudolph-patch-1
Browse files Browse the repository at this point in the history
Travis: add workspace caching (ivy/sbt)
  • Loading branch information
jrudolph authored Nov 7, 2018
2 parents c8e106f + bcca8bf commit 659d7e3
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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:
- [email protected]
Expand Down

0 comments on commit 659d7e3

Please sign in to comment.