mirror of
https://github.com/apache/druid.git
synced 2025-02-09 03:24:55 +00:00
* Make Errorprone the default compiler * Address comments * Make Error Prone's ClassCanBeStatic rule a error * Preconditions allow only %s pattern * Fix DruidCoordinatorBalancerTester * Try to give the compiler more memory * Remove distribution module activation on jdk 1.8 because only jdk 1.8 is used now * Don't show compiler warnings * Try different travis script * Fix travis.yml * Make Error Prone optional again * For error-prone compiler * Increase compiler's maxmem * Don't run Error Prone for benchmarks because of OOM * Skip install step in Travis * Remove MetricHolder.writeToChannel() * In travis.yml, check compilation before tests, because it may fail faster
18 lines
233 B
YAML
18 lines
233 B
YAML
language: java
|
|
|
|
jdk:
|
|
- oraclejdk8
|
|
|
|
script:
|
|
- mvn clean -Pstrict -pl '!benchmarks' compile test-compile -B
|
|
- mvn test -B -Pparallel-test -Dmaven.fork.count=2
|
|
|
|
install: true
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.m2
|
|
|