-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcircle.yml
More file actions
executable file
·22 lines (18 loc) · 953 Bytes
/
circle.yml
File metadata and controls
executable file
·22 lines (18 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
machine:
java:
version:
oraclejdk8
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools,platform-tools,android-23"
- echo y | android update sdk --no-ui --all --filter "build-tools-23.0.2"
test:
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit-debug/
- mkdir -p $CIRCLE_TEST_REPORTS/junit-release/
- find . -type f -regex ".*/app/build/test-results/debug/.*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit-debug/ \;
- find . -type f -regex ".*/app/build/test-results/release/.*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit-release/ \;
- mkdir -p $CIRCLE_TEST_REPORTS/test-report-debug/
- mkdir -p $CIRCLE_TEST_REPORTS/test-report-release/
- find . -type f -regex ".*/app/build/reports/tests/debug/.*" -exec cp {} $CIRCLE_TEST_REPORTS/test-report-debug/ \;
- find . -type f -regex ".*/app/build/reports/tests/release/.*" -exec cp {} $CIRCLE_TEST_REPORTS/test-report-release/ \;