-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
28 lines (24 loc) · 1.27 KB
/
circle.yml
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
machine:
ruby:
version: 2.4.0
dependencies:
pre:
# Android SDK Platform 25
- if [ ! -d "/usr/local/android-sdk-linux/platforms/android-25" ]; then echo y | android update sdk --no-ui --all --filter "android-25"; fi
# Android SDK Build-tools, revision 25.0.2
- if [ ! -d "/usr/local/android-sdk-linux/build-tools/25.0.2" ]; then echo y | android update sdk --no-ui --all --filter "build-tools-25.0.2"; fi
# Android SDK Build-tools, revision 23.0.1
- if [ ! -d "/usr/local/android-sdk-linux/build-tools/23.0.1" ]; then echo y | android update sdk --no-ui --all --filter "build-tools-23.0.1"; fi
# Android Support Repository, revision 47.0.0 / Local Maven repository for Support Libraries
- if [ ! -d "/usr/local/android-sdk-linux/extras/android/m2repository/com/android/support/test/espresso/espresso-intents/2.2.2" ]; then echo y | android update sdk --no-ui --filter "extra-android-m2repository-47.0.0"; fi
cache_directories:
- /usr/local/android-sdk-linux/platforms/android-25
- /usr/local/android-sdk-linux/build-tools/25.0.2
- /usr/local/android-sdk-linux/build-tools/23.0.1
- /usr/local/android-sdk-linux/extras/android/m2repository
override:
- yarn
- bundle install
test:
override:
- bundle exec fastlane android test