Skip to content

Commit d95c5a6

Browse files
committed
ci: increase CloudStack simulator readiness wait (10m → 20m)
Most failing jobs are timing out around the same 20-27m window in CI; extending the readiness loop commonly stabilizes these matrices. This is a low-risk change that only affects CI timing, not the actual test logic.
1 parent ec57a77 commit d95c5a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/setup-cloudstack/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ runs:
4343
run: |
4444
echo "Starting Cloudstack health check"
4545
T=0
46-
until [ $T -gt 20 ] || curl -sfL http://localhost:8080 --output /dev/null
46+
until [ $T -gt 40 ] || curl -sfL http://localhost:8080 --output /dev/null
4747
do
4848
echo "Waiting for Cloudstack to be ready..."
4949
((T+=1))

0 commit comments

Comments
 (0)