File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1212
1313jobs :
1414 Build-Swift-Modelgen :
15- name : Analyze
15+ name : Build
1616 runs-on : macos-13-xl
1717 permissions :
1818 actions : read
You can’t perform that action at this time.
0 commit comments