From de4198efaf899c0996c4f7d614bfb442ace07efc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Wed, 9 Sep 2015 18:57:03 -0700 Subject: [PATCH] CI: Increase adb install timeouts It sometimes fails with the default (2 minutes), especially on the 4.4 emulator. Increase to 8 minutes. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a504d6bd9..1328dd993 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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 $!