-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
63 lines (53 loc) · 1.79 KB
/
.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
language: android
jdk: oraclejdk8
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-27.0.3
# The SDK version used to compile your project
- android-27
# Additional components
- extra-android-m2repository
env:
global:
# install timeout in minutes (2 minutes by default)
- ADB_INSTALL_TIMEOUT=8
matrix:
# uncomment the following lines to test the various emulators for speed
#- API=android-15 ABI=armeabi-v7a
- API=android-16 ABI=armeabi-v7a
#- API=android-17 ABI=armeabi-v7a
#- API=android-18 ABI=armeabi-v7a
#- API=android-19 ABI=armeabi-v7a
#- API=android-21 ABI=armeabi-v7a
#- API=android-22 ABI=armeabi-v7a
#- API=android-24 ABI=armeabi-v7a
#- API=android-24 ABI=arm64-v8a
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
before_install:
- chmod +x gradlew
# Emulator Management: Create, Start and Wait
before_script:
# uncomment the following lines once there are instrumentation tests
#- echo no | android create avd --force --name test --target $API --abi $ABI
#- emulator -avd test -no-skin -no-audio -no-window &
script:
- ./gradlew clean assembleDebug check -PdisablePreDex
# uncomment the following lines once there are instrumentation tests
#- android-wait-for-emulator
#- android list target
#- adb shell input keyevent 82 &
#- ./gradlew connectedDebugAndroidTest -PdisablePreDex --continue --stacktrace
after_success:
#- bash <(curl -s https://codecov.io/bash)