2014-05-18 22:12:08 +02:00
|
|
|
language: android
|
|
|
|
jdk: oraclejdk7
|
|
|
|
|
|
|
|
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
|
2014-05-18 22:21:56 +02:00
|
|
|
- emulator -avd test -no-skin -no-audio -no-window &
|
2014-05-18 22:12:08 +02:00
|
|
|
- cp src/de/danoeh/antennapod/util/flattr/FlattrConfig.java.example src/de/danoeh/antennapod/util/flattr/FlattrConfig.java
|
|
|
|
|
|
|
|
before_script:
|
2014-05-18 22:28:05 +02:00
|
|
|
- chmod -R 777 ./ci/wait_for_emulator.sh
|
2014-05-18 22:12:08 +02:00
|
|
|
- ./ci/wait_for_emulator.sh
|
|
|
|
|
|
|
|
script:
|
|
|
|
- gradle connectedAndroidTest
|