[fix] prevent macos-13 runner starvation from blocking docker image update#395
Merged
morningman merged 1 commit intoJun 1, 2026
Conversation
28b5ab0 to
7274e51
Compare
…pdate macos-13 (Intel Mac) GitHub Actions runners have become increasingly scarce and regularly queue for 24h before timing out. This caused the entire build matrix to fail, blocking update-docker and leaving the release status stuck at BUILDING indefinitely. - Remove macOS-x86_64 (macos-13) from the build matrix: Intel Mac is being phased out and no downstream consumer (Docker image, Linux workflow) needs darwin-x86_64 artifacts; Apple Silicon covers all active Mac use cases - Add fail-fast: false so a future matrix failure does not cancel remaining in-progress builds - Fix failure job condition to always() && failure() so it fires even when update-docker is skipped rather than failed, preventing status from being stuck at BUILDING
7274e51 to
8584f8e
Compare
morningman
approved these changes
Jun 1, 2026
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.
Problem
The `build` matrix job includes `macOS-x86_64` running on `macos-13`. GitHub Actions `macos-13` (Intel Mac) runners have become increasingly scarce and can queue for up to 24 hours before timing out. This caused a cascade of failures:
This was observed in run #26616785582 where the `macOS-x86_64` build waited exactly 24h0m0s.
Fix
`build-4.0.yml`
`build.yml`