From 484fc4ce9ae5be2e16830795616bdb02822f4a0b Mon Sep 17 00:00:00 2001 From: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:32:38 +0000 Subject: [PATCH] increase timeout for sanitizer jobs Signed-off-by: Pratik Mankawde <3397372+pratikmankawde@users.noreply.github.com> --- .github/workflows/reusable-build-test-config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable-build-test-config.yml b/.github/workflows/reusable-build-test-config.yml index d9f936a598..aeac78d6eb 100644 --- a/.github/workflows/reusable-build-test-config.yml +++ b/.github/workflows/reusable-build-test-config.yml @@ -77,7 +77,7 @@ jobs: runs-on: ${{ fromJSON(inputs.runs_on) }} container: ${{ inputs.image != '' && inputs.image || null }} # Sanitizer builds on GCC are taking longer than 60mins. Hence increasing the timeout to 90mins. - timeout-minutes: 60 + timeout-minutes: ${{ inputs.sanitizers != '' && 90 || 60 }} env: # Use a namespace to keep the objects separate for each configuration. CCACHE_NAMESPACE: ${{ inputs.config_name }}