Skip to content

Commit df68fbf

Browse files
committed
Improve TravisCI configuration - add cache'ing.
1 parent 9b63667 commit df68fbf

File tree

1 file changed

+14
-5
lines changed

1 file changed

+14
-5
lines changed

.travis.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
language: scala
22

3-
scala:
4-
- 2.10.6
5-
- 2.11.8
6-
73
script:
84
- sbt ++$TRAVIS_SCALA_VERSION test
95

106
jdk:
11-
- oraclejdk7
7+
- oraclejdk7
8+
9+
scala:
10+
- 2.10.6
11+
- 2.11.8
12+
13+
before_cache:
14+
- find "$HOME/.sbt/" -name '*.lock' -print0 | xargs -0 rm
15+
- find "$HOME/.ivy2/" -name 'ivydata-*.properties' -print0 | xargs -0 rm
16+
17+
cache:
18+
directories:
19+
- $HOME/.ivy2/cache
20+
- $HOME/.sbt

0 commit comments

Comments
 (0)