From 298194f7877d4da03bf431383d8ece3e22ba1626 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Wed, 2 Sep 2026 08:03:20 -0700 Subject: [PATCH] release-engine: darwin-x64 builds on macos-14 (macos-13 is retired) Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01Vau2X53xGTjjTCXWMVBoNY --- .github/workflows/release-engine.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-engine.yml b/.github/workflows/release-engine.yml index 850271a1a..97d14f0db 100644 --- a/.github/workflows/release-engine.yml +++ b/.github/workflows/release-engine.yml @@ -20,7 +20,9 @@ jobs: matrix: include: - { os: macos-14, target: aarch64-apple-darwin, short: darwin-arm64 } - - { os: macos-13, target: x86_64-apple-darwin, short: darwin-x64 } + # No Intel runner: GitHub retired macos-13. Apple's toolchain builds + # x86_64 on an arm64 host natively once the target is installed. + - { os: macos-14, target: x86_64-apple-darwin, short: darwin-x64 } - { os: ubuntu-latest, target: x86_64-unknown-linux-musl, short: linux-x64 } - { os: ubuntu-latest, target: aarch64-unknown-linux-musl, short: linux-arm64, cross: true } - { os: windows-latest, target: x86_64-pc-windows-msvc, short: windows-x64 }