diff options
author | Juha Alanen <juha.alanen@mapbox.com> | 2020-04-16 21:27:59 +0300 |
---|---|---|
committer | Juha Alanen <juha.alanen@mapbox.com> | 2020-04-21 11:04:04 +0300 |
commit | 4be8c1ac3456190b94ebc527a46b783d7133a1f0 (patch) | |
tree | dc5afdfe8d517e02d3066a087270e0b7888bf276 | |
parent | af048481b1fa07c56997e256e35c639ae68ad9cf (diff) | |
download | qtlocation-mapboxgl-4be8c1ac3456190b94ebc527a46b783d7133a1f0.tar.gz |
[build] Increase the timeout for Android and iOS benchmark runners
-rw-r--r-- | circle.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/circle.yml b/circle.yml index dfba9caede..af2022222c 100644 --- a/circle.yml +++ b/circle.yml @@ -426,7 +426,7 @@ commands: steps: - run: name: Run iOS Test App on Firebase - no_output_timeout: 20m + no_output_timeout: 30m command: | if [[ -n "${GCLOUD_SERVICE_ACCOUNT_JSON_IOS}" ]]; then # arrange files in a way Firebase expects it, and package them in a zip file @@ -437,7 +437,7 @@ commands: gcloud firebase test ios models list gcloud firebase test ios run \ --test testapp.zip \ - --device model=iphone11,version=13.3,locale=en,orientation=portrait --xcode-version=11.3.1 --timeout 20m \ + --device model=iphone11,version=13.3,locale=en,orientation=portrait --xcode-version=11.3.1 --timeout 30m \ --verbosity=debug --no-record-video --results-dir ios-test-app-${CIRCLE_BUILD_NUM} fi upload-coverage-results: @@ -579,13 +579,13 @@ jobs: - login-google-cloud-platform - run: name: Run BenchmarkRunner on Firebase - no_output_timeout: 20m + no_output_timeout: 30m command: | gcloud firebase test android models list gcloud firebase test android run --type instrumentation \ --app benchmark/android/app/build/outputs/apk/release/app-release.apk \ --test benchmark/android/app/build/outputs/apk/androidTest/release/app-release-androidTest.apk \ - --device-ids flame --os-version-ids 29 --locales en --orientations portrait --timeout 20m \ + --device-ids flame --os-version-ids 29 --locales en --orientations portrait --timeout 30m \ --directories-to-pull /sdcard/benchmark/results --results-dir benchmark-${CIRCLE_BUILD_NUM} \ --no-record-video --no-performance-metrics - run: |