Added circle.yml

This commit is contained in:
Alexandros Schillings
2017-01-17 17:07:16 +00:00
parent 9ba9f2728b
commit a7312ad51c

7
circle.yml Normal file
View File

@@ -0,0 +1,7 @@
test:
override:
- (echo "Running JUnit tests!")
- ./gradlew test -PdisablePreDex
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;