We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f2487c commit c79ef8cCopy full SHA for c79ef8c
.travis.yml
@@ -0,0 +1,22 @@
1
+dist: xenial
2
+language: scala
3
+script:
4
+ - ./run.sh $SCALA_BRANCH
5
+scala:
6
+ # This is actually overridden by the run.sh script
7
+ - 2.13.1
8
+jdk:
9
+ - openjdk8
10
+env:
11
+ - SCALA_BRANCH=2.11.x
12
+ - SCALA_BRANCH=2.12.x
13
+ - SCALA_BRANCH=2.13.x
14
+
15
+cache:
16
+ directories:
17
+ - "$HOME/.ivy2/cache"
18
+ - "$HOME/.sbt"
19
+before_cache:
20
+ # Cleanup the cached directories to avoid unnecessary cache updates
21
+ - find $HOME/.ivy2/cache -name "ivydata-*.properties" -print -delete
22
+ - find $HOME/.sbt -name "*.lock" -print -delete
0 commit comments