Skip to content

Commit c79ef8c

Browse files
committed
Run the build with Travis.
1 parent 1f2487c commit c79ef8c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)