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() {
52
52
latest_run_id=$( get_latest_run_id)
53
53
echo " Latest run ID: $latest_run_id "
54
54
run_status=$( get_run_status " $latest_run_id " )
55
- timeout=$(( SECONDS + 600 )) # 600 seconds = 10 minutes
55
+ timeout=$(( SECONDS + 1200 )) # 1200 seconds = 20 minutes
56
56
57
57
# Continuously check for status until completion
58
58
while [[ " $run_status " != " completed" && " $SECONDS " -lt " $timeout " ]]; do
59
- echo " Test run status: $latest_status "
59
+ echo " Test run status: $run_status "
60
60
sleep 10 # Wait before checking again
61
61
run_status=$( get_run_status " $latest_run_id " )
62
62
done
Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
Build-Swift-Modelgen :
15
- name : Analyze
15
+ name : Build
16
16
runs-on : macos-13-xl
17
17
permissions :
18
18
actions : read
You can’t perform that action at this time.
0 commit comments