TravisCI build produces 4MB+ of log output which causes TravisCI to kill the build. Run Maven on TravisCI in batch-mode and redirect test output to file to avoid long download progress output.
19 lines
240 B
YAML
19 lines
240 B
YAML
language: java
|
|
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
services:
|
|
- redis-server
|
|
- cassandra
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.m2
|
|
|
|
sudo: false
|
|
|
|
install: true
|
|
|
|
script: "mvn clean dependency:list test -Dsort -Dmaven.test.redirectTestOutputToFile=true -B"
|