From 7f2867997fc30d51d5ee5db5204c56fe256b46d2 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 17 Jul 2026 17:31:57 +0100 Subject: [PATCH] ci: allow release macOS cache finalization --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1cdbfe879368..e982116719bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2766,7 +2766,9 @@ jobs: needs: [preflight] if: needs.preflight.outputs.run_macos_swift == 'true' runs-on: ${{ github.event_name == 'workflow_dispatch' && 'macos-26' || (github.repository == 'openclaw/openclaw' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == 'openclaw/openclaw') && 'blacksmith-12vcpu-macos-26' || 'macos-26') }} - timeout-minutes: 20 + # Release dispatches use the hosted runner and may still be finalizing large + # Swift caches after every test passes; keep that post-job work non-blocking. + timeout-minutes: ${{ github.event_name == 'workflow_dispatch' && 30 || 20 }} env: HISTORICAL_TARGET: ${{ needs.preflight.outputs.compatibility_target }} steps: