From 1d302767621cce13f92027c48accf9a536eb9328 Mon Sep 17 00:00:00 2001 From: Will Washburn Date: Fri, 24 Apr 2026 22:41:43 -0400 Subject: [PATCH] fix(ci): drop darwin-x64 verify leg (macos-13 queue stuck again) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit verify-publish-sdk.yml had a separate darwin-x64 matrix entry on macos-13 that I missed when 0bcdbf31 dropped the equivalent leg from publish.yml's smoke-broker-packages matrix. The macos-13 Intel pool is still capacity-starved — run 24918788548 had this verify job sitting in 'queued' for hours while every other leg finished, and required force-cancel via the GitHub API to clear. Same fix as before: drop the leg with a comment pointing at the matching omission in publish.yml. The x86_64-apple-darwin broker is still cross-compiled and published; we just don't run a darwin-x64 verify on an Intel host. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/verify-publish-sdk.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/verify-publish-sdk.yml b/.github/workflows/verify-publish-sdk.yml index 57ddea345..8e905a22b 100644 --- a/.github/workflows/verify-publish-sdk.yml +++ b/.github/workflows/verify-publish-sdk.yml @@ -48,9 +48,10 @@ jobs: - platform: darwin-arm64 os: macos-14 expected_pkg: '@agent-relay/broker-darwin-arm64' - - platform: darwin-x64 - os: macos-13 - expected_pkg: '@agent-relay/broker-darwin-x64' + # darwin-x64 verify is intentionally omitted: GitHub's macos-13 + # (Intel) runner pool is capacity-constrained and routinely queues + # for hours. Mirrors the same omission in publish.yml's + # smoke-broker-packages matrix. - platform: linux-x64 os: ubuntu-latest expected_pkg: '@agent-relay/broker-linux-x64'