CI: Run tests on a 4.4 emulator too

This commit is contained in:
Daniel Martí 2015-09-09 17:30:05 -07:00
parent 3f87462994
commit 51ed0f9625

View File

@ -16,8 +16,9 @@ before_script:
- echo y | android -s update sdk --no-ui -a -t platform-tools,tools,build-tools-23.0.1,android-22,extra-android-m2repository - echo y | android -s update sdk --no-ui -a -t platform-tools,tools,build-tools-23.0.1,android-22,extra-android-m2repository
- export PATH="$ANDROID_HOME/platform-tools:$PATH" - export PATH="$ANDROID_HOME/platform-tools:$PATH"
- export PATH="$ANDROID_HOME/build-tools/23.0.1:$PATH" - export PATH="$ANDROID_HOME/build-tools/23.0.1:$PATH"
- echo " == Installing emulator system images" - echo " == Installing Android emulator images"
- echo y | android -s update sdk --no-ui -a -t android-10 - echo y | android -s update sdk --no-ui -a -t android-10,android-19
- echo y | android -s update sdk --no-ui -a -t sys-img-armeabi-v7a-android-19
- echo " == Installing Gradle" - echo " == Installing Gradle"
- wget -q -O gradle.zip https://services.gradle.org/distributions/gradle-2.4-bin.zip - wget -q -O gradle.zip https://services.gradle.org/distributions/gradle-2.4-bin.zip
- unzip -q gradle.zip - unzip -q gradle.zip
@ -27,12 +28,21 @@ test:
script: script:
- echo " == Building via gradle" - echo " == Building via gradle"
- gradle build - gradle build
- echo " == Setting up Android 2.3.7 emulator" - echo " == Creating Android 2.3.7 emulator"
- echo no | android create avd --force -n fcl-test -t android-10 -b armeabi - echo no | android create avd --force -n fcl-test -t android-10 -b armeabi
- echo " == Starting Android 2.3.7 emulator" - echo " == Starting Android 2.3.7 emulator"
- emulator -force-32bit -avd fcl-test -no-skin -no-audio -no-window & - emulator -force-32bit -avd fcl-test -no-skin -no-audio -no-window &
- ./F-Droid/tools/wait-for-emulator - ./F-Droid/tools/wait-for-emulator
- echo " == Running Android tests" - echo " == Running Android tests on the 2.3.7 emulator"
- gradle connectedCheck - gradle connectedCheck
- echo " == Stopping Android 2.3.7 emulator" - echo " == Stopping Android 2.3.7 emulator"
- kill $! - kill $!
- echo " == Creating Android 4.4.4 emulator"
- echo no | android create avd --force -n fcl-test -t android-19 -b armeabi-v7a
- echo " == Starting Android 4.4.4 emulator"
- emulator -force-32bit -avd fcl-test -no-skin -no-audio -no-window &
- ./F-Droid/tools/wait-for-emulator
- echo " == Running Android tests on the 4.4.4 emulator"
- gradle connectedCheck
- echo " == Stopping Android 4.4.4 emulator"
- kill $!