-
Notifications
You must be signed in to change notification settings - Fork 37
/
.travis.yml
33 lines (29 loc) · 927 Bytes
/
.travis.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
29
30
31
32
33
language: android
jdk: oraclejdk8
sudo: false
android:
components:
- tools
- platform-tools
- tools
- build-tools-26.0.2
- android-22
- android-24
- sys-img-armeabi-v7a-android-22
- extra-android-m2repository
before_script:
# Create and start emulator
- cd Friendly-plans
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a --skin WXGA800
- emulator -avd test -no-audio -no-window &
- travis_wait 30 android-wait-for-emulator
- adb shell input keyevent 82 &
script: ./gradlew test connectedAndroidTest -Pandroid.testInstrumentationRunnerArguments.notAnnotation=pg.autyzm.friendly_plans.annotations.IgnoreForTravis
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- $HOME/.android/build-cache