CI: Increase adb install timeouts

It sometimes fails with the default (2 minutes), especially on the 4.4
emulator. Increase to 8 minutes.
This commit is contained in:
Daniel Martí 2015-09-09 18:57:03 -07:00
parent 51ed0f9625
commit de4198efaf

View File

@ -34,7 +34,7 @@ test:
- emulator -force-32bit -avd fcl-test -no-skin -no-audio -no-window &
- ./F-Droid/tools/wait-for-emulator
- echo " == Running Android tests on the 2.3.7 emulator"
- gradle connectedCheck
- ADB_INSTALL_TIMEOUT=8 gradle connectedCheck
- echo " == Stopping Android 2.3.7 emulator"
- kill $!
- echo " == Creating Android 4.4.4 emulator"
@ -43,6 +43,6 @@ test:
- 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
- ADB_INSTALL_TIMEOUT=8 gradle connectedCheck
- echo " == Stopping Android 4.4.4 emulator"
- kill $!