-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathcircle.yml
More file actions
19 lines (16 loc) · 721 Bytes
/
circle.yml
File metadata and controls
19 lines (16 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
machine:
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter "tools,platform-tools,android-25"
- echo y | android update sdk --no-ui --all --filter "build-tools-25.0.2"
- echo y | android update sdk --no-ui --all --filter "extra-android-support";
- echo y | android update sdk --no-ui --all --filter "extra-android-m2repository";
- echo y | android update sdk --no-ui --all --filter "extra-google-google_play_services";
test:
override:
- ./gradlew build check
# copy lint report
- mkdir $CIRCLE_TEST_REPORTS/Lint
- mv simple-stack/build/outputs/lint-results-debug.xml $CIRCLE_TEST_REPORTS/lint