From 134fded7836a36a23590bbaaa9fed49ec40763db Mon Sep 17 00:00:00 2001 From: Ame Date: Fri, 19 Jun 2026 08:32:39 +0800 Subject: [PATCH] ci(desktop): drop macos-13 (Intel) from the build matrix GitHub's x64 mac runners queued 20+ min and never allocated on the 0.51.0-beta.2 release, hanging the whole run while arm64 + windows had long since published. Intel Macs are a shrinking base (Apple stopped selling them in 2023; arm64 covers every Mac since), not worth blocking every release. Matrix is now macos-14 (arm64 dmg) + windows-latest (x64 nsis). Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2eaa5f18..e5e6a443 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -149,7 +149,12 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-14, macos-13, windows-latest] # arm64 dmg / x64 dmg / x64 nsis + # macos-13 (Intel/x64) dropped: GitHub's x64 mac runners queue for + # tens of minutes and routinely never allocate, hanging the whole + # release run — and Intel Macs are a shrinking base Apple stopped + # selling in 2023 (arm64 covers every Mac since). Re-add if real + # demand appears, ideally cross-built off the arm64 runner. + os: [macos-14, windows-latest] # arm64 dmg / x64 nsis runs-on: ${{ matrix.os }} permissions: contents: write # upload release assets