Fix bug in CI config

This commit is contained in:
Jamie McDonald 2015-01-09 14:12:49 +01:00
parent 6bc67bd7c1
commit 48bf085760
1 changed files with 1 additions and 6 deletions

View File

@ -7,16 +7,11 @@ env:
matrix:
- ANDROID_SDKS=android-21,sysimg-21 ANDROID_TARGET=android-21 ANDROID_ABI=armeabi-v7a
before_install:
# Create and start emulator
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
install:
- ./gradlew :lib:build
before_script:
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
- echo no | android create avd --force -n test -t $ANDROID_TARGET --abi $ANDROID_ABI
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &