From 1d53720f981ca8c6335c7a4dadce3f12eed97405 Mon Sep 17 00:00:00 2001 From: rosa-regional-platform-ci Date: Mon, 15 Jun 2026 08:21:30 +0200 Subject: [PATCH] fix(ci): add --timeout=2h to test-e2e-cli ginkgo suite The nightly-integration job fails because the Ginkgo v2 default 1-hour suite timeout fires before test-e2e-cli completes. The test sequence spends ~40 minutes on HCP readiness and bundle waits, leaving only ~12 minutes when vpc-delete starts. The CloudFormation waiter in rosactl's DeleteVPC is configured for 15 minutes; Ginkgo fires first, and the cmd.CombinedOutput() call at cluster_test.go:802 blocks in pidfdWait and cannot be interrupted. Raise the suite timeout to 2 hours to give the full test sequence room to complete. Job: https://prow.ci.openshift.org/view/gs/test-platform-results/logs/periodic-ci-openshift-online-rosa-regional-platform-main-nightly-integration --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e0980177..e39b561b 100644 --- a/Makefile +++ b/Makefile @@ -133,7 +133,7 @@ test-e2e-cli: E2E_RHOBS_API_URL="${RHOBS_API_URL}" \ ROSACTL_BIN="${ROSACTL_BIN}" \ AWS_REGION="${AWS_REGION}" \ - ginkgo -vv --junit-report=junit-cli.xml \ + ginkgo -vv --timeout=2h --junit-report=junit-cli.xml \ --output-dir=$(TEST_OUTPUT_DIR) ./test/e2e-cli test-e2e-platform-monitoring: @@ -335,4 +335,4 @@ verify: git diff --exit-code go.mod go.sum # All checks -all: deps fmt vet lint test build +all: deps fmt vet lint test build \ No newline at end of file