Release: build macOS with the newest Xcode, drop Intel artifacts - #5
Merged
Conversation
The Homebrew LLVM attempt got past the CTAD check but died in the compile: brew's libc++ 22 collides with Apple's SDK headers (_malloc_type.h vs its own size_t). The log revealed the better answer — the image already carries Xcode 16.4, whose AppleClang is new enough. So: select the newest Xcode present and use Apple's own toolchain. Intel macOS is dropped. macos-13 tops out at an AppleClang that cannot compile this codebase, and GitHub is retiring Intel runners anyway. Intel Mac users fall back to compiling from source, which is the path the console and installer already take when no artifact matches — the graceful decline verified earlier. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Second attempt at the macOS artifact.
What happened. Homebrew LLVM cleared the CTAD check but failed in the compile — brew's libc++ 22 collides with Apple's SDK headers. The log showed the image already has Xcode 16.4, whose AppleClang is new enough, so we now select the newest Xcode present and use Apple's toolchain.
Intel macOS dropped.
macos-13tops out at an AppleClang that cannot build this codebase, and GitHub is retiring Intel runners. Intel Mac users compile from source — the fallback the console and installer already take when no artifact matches, verified earlier against a served release.Linux artifacts have been publishing successfully throughout.