mirror of https://github.com/sbt/sbt.git
24 lines
522 B
YAML
24 lines
522 B
YAML
language: scala
|
|
jdk: oraclejdk8
|
|
|
|
scala:
|
|
- 2.11.11
|
|
- 2.12.3
|
|
|
|
matrix:
|
|
include:
|
|
- scala: 2.12.3
|
|
jdk: oraclejdk9
|
|
|
|
script:
|
|
- sbt -Dfile.encoding=UTF8 -J-XX:ReservedCodeCacheSize=256M ";++$TRAVIS_SCALA_VERSION;mimaReportBinaryIssues;scalafmt::test;test:scalafmt::test;sbt: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
|