Skip to content

Commit 7932422

Browse files
committed
chore: increase timeout for github workflow run
1 parent a764821 commit 7932422

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.codebuild/scripts/run-ios-modelgen-e2e-test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ main() {
5252
latest_run_id=$(get_latest_run_id)
5353
echo "Latest run ID: $latest_run_id"
5454
run_status=$(get_run_status "$latest_run_id")
55-
timeout=$((SECONDS + 600)) # 600 seconds = 10 minutes
55+
timeout=$((SECONDS + 1200)) # 1200 seconds = 20 minutes
5656

5757
# Continuously check for status until completion
5858
while [[ "$run_status" != "completed" && "$SECONDS" -lt "$timeout" ]]; do
59-
echo "Test run status: $latest_status"
59+
echo "Test run status: $run_status"
6060
sleep 10 # Wait before checking again
6161
run_status=$(get_run_status "$latest_run_id")
6262
done

0 commit comments

Comments
 (0)