mirror of https://github.com/apache/cassandra
19 lines
537 B
YAML
19 lines
537 B
YAML
machine:
|
|
java:
|
|
version: 'oraclejdk8'
|
|
|
|
test:
|
|
pre:
|
|
- sudo apt-get update; sudo apt-get install wamerican:
|
|
parallel: true
|
|
override:
|
|
- case $CIRCLE_NODE_INDEX in 0) ant test ;; 1) ant long-test ;; 2) ant test-compression ;; 3) ant test-clientutil-jar ;;esac:
|
|
parallel: true
|
|
|
|
post:
|
|
- mkdir -p $CIRCLE_TEST_REPORTS/junit/:
|
|
parallel: true
|
|
- case $CIRCLE_NODE_INDEX in [0123]) find ./build/test/output/ -iname "*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; ;;esac:
|
|
parallel: true
|
|
|