-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
25 lines (25 loc) · 732 Bytes
/
Copy path.travis.yml
File metadata and controls
25 lines (25 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
language:
- scala
scala:
- 2.11.8
jdk:
- oraclejdk8
sudo:
- required
script:
- sbt assembly && sbt clean coverage test coverageReport
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
- $HOME/.m2/repository
after_success:
- bash <(curl -s https://codecov.io/bash)
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
before_install:
- sudo rm -rf /var/lib/cassandra/*
- wget http://www.us.apache.org/dist/cassandra/3.0.12/apache-cassandra-3.0.12-bin.tar.gz && tar -xvzf apache-cassandra-3.0.12-bin.tar.gz && sudo sh apache-cassandra-3.0.12/bin/cassandra
- sudo service cassandra start
before_script:
- sudo chmod +x /usr/local/bin/sbt