Skip to content

Commit 20a5048

Browse files
committed
add Travis build
1 parent a3ac240 commit 20a5048

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.travis.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# opt-in to Travis's newer/faster container-based infrastructure
2+
sudo: false
3+
4+
language: scala
5+
6+
jdk:
7+
- openjdk6
8+
9+
# cache stuff, hopefully shortening build times
10+
cache:
11+
directories:
12+
- $HOME/.ivy2
13+
- $HOME/.sbt/boot
14+
- $HOME/.sbt/launchers
15+
16+
script:
17+
- sbt test
18+
19+
before_cache:
20+
- find $HOME/.sbt -name "*.lock" | xargs rm
21+
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
22+
23+
notifications:
24+
email:
25+
26+

0 commit comments

Comments
 (0)