-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcircle.yml
More file actions
25 lines (21 loc) · 782 Bytes
/
circle.yml
File metadata and controls
25 lines (21 loc) · 782 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
#
# Build configuration for Circle CI
#
general:
artifacts:
- "IntelliQ/mobile/build/reports/tests/"
- "IntelliQ/backend/build/reports/tests/"
machine:
environment:
ANDROID_HOME: /usr/local/android-sdk-linux
dependencies:
override:
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,android-23,extra-google-m2repository,extra-google-google_play_services,extra-android-support
- echo y | android update sdk --no-ui --all --filter build-tools-25.0.0
- ANDROID_HOME=/usr/local/android-sdk-linux ./IntelliQ/gradlew dependencies
test:
override:
- (cd IntelliQ && ./gradlew mobile:test):
timeout: 600
- (cd IntelliQ && ./gradlew backend:test):
timeout: 600