Make circleci run more test targets.

Patch by marcuse; reviewed by Jeff Jirsa and Michael Shuler for CASSANDRA-13413
This commit is contained in:
Marcus Eriksson 2017-04-05 12:43:54 +02:00
parent 010b5f3a56
commit b021a1ba55
1 changed files with 10 additions and 9 deletions

View File

@ -4,14 +4,15 @@ machine:
test:
pre:
- sudo ifconfig lo:1 127.0.0.2 up
- sudo ifconfig lo:2 127.0.0.3 up
- sudo ifconfig lo:3 127.0.0.4 up
- sudo ifconfig lo:4 127.0.0.5 up
- ant build
- sudo apt-get update; sudo apt-get install wamerican:
parallel: true
override:
- ant test
- case $CIRCLE_NODE_INDEX in 0) ant eclipse-warnings; ant test ;; 1) ant long-test ;; 2) ant test-compression ;; 3) ant stress-test ;;esac:
parallel: true
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- cp ./build/test/output/*.xml $CIRCLE_TEST_REPORTS/junit/
- mkdir -p $CIRCLE_TEST_REPORTS/junit/:
parallel: true
- find ./build/test/output/ -iname "*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;:
parallel: true