config/.travis.yml
Havoc Pennington 3547ace892 Use same sbt command line for test and doc
This makes Travis complete much more quickly.
2015-03-06 20:27:35 -05:00

26 lines
696 B
YAML

# use Docker-based container (instead of OpenVZ)
sudo: false
cache:
directories:
- $HOME/.ivy2/cache
# Cache the sbt launcher, currently the Travis VM preinstalls 0.13.5
- $HOME/.sbt/launchers/0.13.7
# Cache scala, currently the Travis VM preinstalls 2.11.2 & 2.10.4
#- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
# Updates regarding Travis VM preinstalls:
# https://github.com/travis-ci/travis-cookbooks/blob/master/changes.md
language: scala
jdk:
- oraclejdk8
script:
- sbt ++$TRAVIS_SCALA_VERSION test doc
# Remove to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" -delete
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete