mirror of https://github.com/sbt/sbt.git
19 lines
444 B
YAML
19 lines
444 B
YAML
language: scala
|
|
jdk: oraclejdk8
|
|
|
|
scala:
|
|
- 2.11.11
|
|
- 2.12.3
|
|
|
|
script:
|
|
- sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M "++$TRAVIS_SCALA_VERSION" mimaReportBinaryIssues scalafmt::test test:scalafmt::test test
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.ivy2/cache
|
|
- $HOME/.sbt
|
|
|
|
before_cache:
|
|
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete
|
|
- find $HOME/.sbt -name "*.lock" -print -delete
|