From afbea35d96615792902d5b5117f1446c1a15805d Mon Sep 17 00:00:00 2001 From: Robby Cochran Date: Thu, 17 Sep 2026 10:31:44 -0700 Subject: [PATCH] fix(acs-ci): time-limit GCS preflight --- tasks/acs-ci-nightly/workflow/preflight.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/acs-ci-nightly/workflow/preflight.yaml b/tasks/acs-ci-nightly/workflow/preflight.yaml index ccb8bc7..826af48 100644 --- a/tasks/acs-ci-nightly/workflow/preflight.yaml +++ b/tasks/acs-ci-nightly/workflow/preflight.yaml @@ -33,7 +33,7 @@ agent: echo echo "GCS: gsutil ls -b gs://$GCS_BUCKET" - if /opt/gsutil/bin/gsutil ls -b "gs://$GCS_BUCKET" >/dev/null 2>"$gcs_error"; then + if timeout 30s /opt/gsutil/bin/gsutil ls -b "gs://$GCS_BUCKET" >/dev/null 2>"$gcs_error"; then echo "GCS: PASS" else gcs_status=$?