ci(release): use macos-15-intel runner for Intel build#43
Merged
Conversation
PR #42 switched to `macos-15`, but that label resolves to the `macos-15-arm64` image (per actions/runner-images README). The job "succeeded" only because it produced another aarch64 binary — verified by inspecting workflow run 26093996486: the macos-x64 artifact contained `codex_switch_1.5.10_aarch64.dmg` and the job log shows `Image: macos-15-arm64`. The correct free standard Intel runner is `macos-15-intel` (along with `macos-26-intel`); both are documented as standard runners separately from the paid `-large` / `-xlarge` tier. Refs: actions/runner-images README "Available Images" table — | macOS 15 | x64 | `macos-latest-large`, `macos-15-large`, or `macos-15-intel` |
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.
Summary
Third attempt to actually produce a Mac Intel build:
macos-13→ GitHub retired freemacos-13on 2025-12-04, job queued 24h then auto-cancelled.macos-15→ that label actually resolves to themacos-15-arm64image, so the job "succeeded" but produced another aarch64 binary (verified: run 26093996486'scodex-switch-macos-x64artifact containedcodex_switch_1.5.10_aarch64.dmg; job log line:Image: macos-15-arm64).macos-15-intel, the actual free standard Intel runner.How I verified the label this time
actions/runner-images README, "Available Images" table:
macos-latest-large,macos-15-large,macos-15-intelmacos-latest,macos-15,macos-15-xlargeGitHub Actions standard-runners docs list
macos-15-intelandmacos-26-intelas standard (free for public repos), separate from the paid-large/-xlargetier.Test plan
workflow_dispatchonmain:Build macos-x64job log showsImage: macos-15-intel(ormacos-15x64, not-arm64)._x64.dmgand_x64.pkg, NOT_aarch64.*._x64.dmg+_x64.pkgto the existingv1.5.10GitHub release.