GitHub Actions: Increase number of attempts

pull/933/head
Alinson S. Xavier 4 years ago
parent 10416e40fa
commit ece1b93f8d
No known key found for this signature in database
GPG Key ID: DCA0DAD4D2F58624

@ -30,7 +30,7 @@ jobs:
AndroidTest: AndroidTest:
needs: Build needs: Build
runs-on: macOS-10.15 runs-on: macOS-10.15
timeout-minutes: 45 timeout-minutes: 60
strategy: strategy:
matrix: matrix:
api: [ api: [

@ -286,7 +286,7 @@ main() {
_print_usage _print_usage
exit 1 exit 1
fi fi
for attempt in {1..3}; do for attempt in {1..5}; do
log_info "Running Android tests (attempt $attempt)..." log_info "Running Android tests (attempt $attempt)..."
android_test $1 && return 0 android_test $1 && return 0
done done

Loading…
Cancel
Save