Upgrade macOS CI runner from macos-13 to macos-14#5785
Closed
gchalump wants to merge 1 commit into
Closed
Conversation
Summary: X-link: facebookresearch/FBGEMM#2715 The `build-macos` job in `fbgemm_ci.yml` was using `macos-13`, which has been deprecated by GitHub Actions. The hosted runner pool for `macos-13` is effectively exhausted — every macOS job in this workflow has been failing with: "The job has exceeded the maximum execution time while awaiting a runner for 24h0m0s" Jobs queue 24h and never start. No compute is billed (no runner = no cost), but every PR shows a broken macOS check, polluting CI signal. Upgrading to `macos-14` (Apple Silicon, GitHub-hosted) restores runnable macOS coverage on PR + main. Note: `macos-14` is a more expensive runner per minute than `macos-13` was; if cost becomes a concern, this job can be moved behind a label gate or dropped entirely. Stacks on top of D106405302 (windows removal). Differential Revision: D106423883
Contributor
|
@gchalump has exported this pull request. If you are a Meta employee, you can view the originating Diff in D106423883. |
Contributor
|
This pull request has been merged in fb9ba83. |
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:
X-link: https://github.com/facebookresearch/FBGEMM/pull/2715
The
build-macosjob infbgemm_ci.ymlwas usingmacos-13, which hasbeen deprecated by GitHub Actions. The hosted runner pool for
macos-13is effectively exhausted — every macOS job in this workflow has been
failing with:
"The job has exceeded the maximum execution time while awaiting a
runner for 24h0m0s"
Jobs queue 24h and never start. No compute is billed (no runner = no
cost), but every PR shows a broken macOS check, polluting CI signal.
Upgrading to
macos-14(Apple Silicon, GitHub-hosted) restoresrunnable macOS coverage on PR + main. Note:
macos-14is a moreexpensive runner per minute than
macos-13was; if cost becomes aconcern, this job can be moved behind a label gate or dropped entirely.
Stacks on top of D106405302 (windows removal).
Differential Revision: D106423883