chore: pin macos CI runner to macos-15#3553
Merged
Merged
Conversation
macos-latest migrated to macos-26 (actions/runner-images#14167), which stalls the go-libp2p p2pd binary download during install. Pin to macos-15 until that is resolved.
tabcat
marked this pull request as ready for review
July 7, 2026 08:04
Member
|
Longer term you'll probably want to remove the postinstall script as it's going to be disabled by default in npm 12. Instead you can download the binary on first run - see ipfs/npm-kubo#83 for an example. |
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.
Description
macos-latestmigrated from macos-15 to macos-26 in June 2026 (actions/runner-images#14167). On macos-26 thego-libp2ppostinstall that downloads the p2pd binary stalls (the fetch returns200 OK, then the response body read never completes and times out after 60s, retrying 11 times), sotest-node (macos-latest)fails at the install step before any tests run. It only surfaces on a node_modules cache miss, which re-triggers the p2pd download, so it hits any deps-changing PR.Pin the macOS runner to
macos-15until the download works on macos-26.Notes & open questions
Stopgap. The underlying issue is go-libp2p's fetch-based p2pd download not completing on macos-26 (libp2p/npm-go-libp2p); unpin once that is fixed.
Change checklist