GitHub Actions: Increase number of attempts

This commit is contained in:
2021-05-23 11:56:50 -05:00
parent 10416e40fa
commit ece1b93f8d
2 changed files with 2 additions and 2 deletions

View File

@@ -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