From ece1b93f8dc7f2079d16dd1a74958a05ccfba38a Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Sun, 23 May 2021 11:56:50 -0500 Subject: [PATCH] GitHub Actions: Increase number of attempts --- .github/workflows/main.yml | 2 +- build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4e54ec960..b256d7b85 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,7 @@ jobs: AndroidTest: needs: Build runs-on: macOS-10.15 - timeout-minutes: 45 + timeout-minutes: 60 strategy: matrix: api: [ diff --git a/build.sh b/build.sh index da9194029..f565365ac 100755 --- a/build.sh +++ b/build.sh @@ -286,7 +286,7 @@ main() { _print_usage exit 1 fi - for attempt in {1..3}; do + for attempt in {1..5}; do log_info "Running Android tests (attempt $attempt)..." android_test $1 && return 0 done