mirror of https://github.com/apache/cassandra
Add circle.yml for easier developer build testing
Patch by Jeff Jirsa; Reviewed by Jason Brown for CASSANDRA-13388
This commit is contained in:
parent
301f7c5b7b
commit
d718d421f9
|
|
@ -0,0 +1,17 @@
|
|||
machine:
|
||||
java:
|
||||
version: 'oraclejdk8'
|
||||
|
||||
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
|
||||
|
||||
override:
|
||||
- ant test
|
||||
post:
|
||||
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
|
||||
- cp ./build/test/output/*.xml $CIRCLE_TEST_REPORTS/junit/
|
||||
Loading…
Reference in New Issue