We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a764821 commit 7932422Copy full SHA for 7932422
.codebuild/scripts/run-ios-modelgen-e2e-test.sh
@@ -52,11 +52,11 @@ main() {
52
latest_run_id=$(get_latest_run_id)
53
echo "Latest run ID: $latest_run_id"
54
run_status=$(get_run_status "$latest_run_id")
55
- timeout=$((SECONDS + 600)) # 600 seconds = 10 minutes
+ timeout=$((SECONDS + 1200)) # 1200 seconds = 20 minutes
56
57
# Continuously check for status until completion
58
while [[ "$run_status" != "completed" && "$SECONDS" -lt "$timeout" ]]; do
59
- echo "Test run status: $latest_status"
+ echo "Test run status: $run_status"
60
sleep 10 # Wait before checking again
61
62
done
0 commit comments