MinimalBible/.travis.yml

14 lines
412 B
YAML
Raw Normal View History

2014-07-05 11:12:37 -04:00
language: android
env:
matrix:
- ANDROID_SDKS=android-19,sysimg-19 ANDROID_TARGET=android-19 ANDROID_ABI=armeabi-v7a
before_install:
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
2014-07-05 11:18:56 -04:00
2014-07-05 11:12:37 -04:00
before_script:
- ./wait_for_emulator
- adb shell input keyevent 82 &
2014-07-05 11:18:56 -04:00
2014-07-05 11:12:37 -04:00
script: "./gradlew connectedAndroidTestTestConfigDebug"