-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcircle.yml
More file actions
28 lines (24 loc) · 814 Bytes
/
circle.yml
File metadata and controls
28 lines (24 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Build configuration for Circle CI
#
general:
artifacts:
- /home/ubuntu/FastCheckList/app/build/outputs/
machine:
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
override:
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,build-tools-21.1.2,android-21,extra-google-m2repository,extra-google-google_play_services,extra-android-support
- ANDROID_HOME=/usr/local/android-sdk-linux ./gradlew dependencies
test:
pre:
- emulator -avd circleci-android22 -no-audio -no-window:
background: true
parallel: true
- circle-android wait-for-boot
override:
- (./gradlew connectedAndroidTest):
timeout: 1800
- (./gradlew assemble):
timeout: 360