Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to new Travis CI build environment #867

Merged
merged 1 commit into from
Dec 25, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 13 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
# Use Docker-based container (instead of OpenVZ)
sudo: false

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

language: scala
scala:
- 2.11.2
- 2.10.4
jdk:
- openjdk7

script: sbt ++$TRAVIS_SCALA_VERSION check-gen-type-classes test
script:
- sbt ++$TRAVIS_SCALA_VERSION check-gen-type-classes test

# Trick to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm