aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 34ef9c3..78ea1b5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,4 +6,13 @@ language: scala
scala:
- 2.11.8
+cache:
+ directories:
+ - $HOME/.ivy2/cache
+
+before_cache:
+ # Delete all ivydata files since ivy touches them on each build
+ - find $HOME/.ivy2/cache -name "ivydata-*.properties" -print0 | xargs -n10 -0 rm
+ - find $HOME/.ivy2/cache -name "*-SNAPSHOT*" -print0 | xargs -n10 -0 rm
+
script: "sbt clean test"