forked from filodb/FiloDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (24 loc) · 671 Bytes
/
.travis.yml
File metadata and controls
29 lines (24 loc) · 671 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
26
27
28
29
language: scala
dist: trusty
env:
global:
_JAVA_OPTIONS="-Dakka.test.timefactor=3 -XX:MaxMetaspaceSize=512m"
scala:
- 2.12.12
jdk:
- openjdk11
script:
- sbt ++$TRAVIS_SCALA_VERSION -sbt-launch-repo https://repo1.maven.org/maven2 test standalone/assembly gateway/assembly cli/assembly
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
before_cache:
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
sbt_args: -jvm-opts travis/jvmopts
services:
- cassandra
sudo: required