-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
32 lines (28 loc) · 901 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
language: android
sudo: required
env:
global:
- ADB_INSTALL_TIMEOUT=8 # 8 minutes (2 minutes by default)
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-28.0.3
- android-28
- android-21
- extra-android-support
- extra-google-m2repository
- extra-android-m2repository
- sys-img-armeabi-v7a-android-21
before_script:
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a -c 2048M
- emulator -avd test -no-audio -no-window -no-skin &
- android-wait-for-emulator
- adb shell settings put global window_animation_scale 0 &
- adb shell settings put global transition_animation_scale 0 &
- adb shell settings put global animator_duration_scale 0 &
- adb shell input keyevent 82 &
script:
- ./gradlew check --continue --stacktrace
- ./gradlew connectedDebugAndroidTest --continue --stacktrace