forked from spacecowboy/NotePad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
35 lines (32 loc) · 890 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
34
35
language: android
env:
global:
- ANDROID_SDKS=android-19,sysimg-19 ANDROID_ABI=armeabi-v7a
matrix:
- ANDROID_TARGET=android-19
- ANDROID_TARGET=android-18
- ANDROID_TARGET=android-17
- ANDROID_TARGET=android-16
- ANDROID_TARGET=android-15
android:
components:
- build-tools-19.1.0
- android-19
- sysimg-19
- android-14
- sysimg-14
- extra-android-support
licenses:
- android-sdk-license-bcbbd656
- android-sdk-license-5be876d5
- '.*intel.+'
before_install:
- chmod +x gradlew
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
before_script:
# Make sure the emulator has started before running tests
- ./wait_for_emulator
script:
- ./gradlew assembleDebug
- ./gradlew assembleDebug connectedAndroidTest --info