From 1bd07b981ad4d379f08598a113a4d8588f5f4eb6 Mon Sep 17 00:00:00 2001 From: Rodrigo Toshiaki Horie Date: Mon, 6 Jul 2026 16:51:21 -0300 Subject: [PATCH] Fix: Increase awx-operator molecule timeout to 20m (#16534) The awx-operator molecule kind test intermittently times out after 15 minutes on GitHub Actions runners, causing flaky CI failures. Bump the bash-level timeout from 15m to 20m (step-level timeout-minutes: 60 is unchanged). Closes: AAP-81583 Co-authored-by: Claude Opus 4.6 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 095610669f..c20471dc7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -260,7 +260,7 @@ jobs: continue-on-error: true run: | set +e - timeout 15m bash -elc ' + timeout 20m bash -elc ' python -m pip install -r molecule/requirements.txt python -m pip install PyYAML # for awx/tools/scripts/rewrite-awx-operator-requirements.py $(realpath ../awx/tools/scripts/rewrite-awx-operator-requirements.py) molecule/requirements.yml $(realpath ../awx)