ci: drop Windows and macOS runners#10845
Open
upbqdn wants to merge 3 commits into
Open
Conversation
Remove the Windows/macOS unit-test matrix and the brew/choco install branches from setup-zebra-build. Unnecessary CI overhead: no relevant node operators run those OSes, and other enthusiasts can use Docker. Claude-Session: https://claude.ai/code/session_01VUPwpe81Ws8c5MeXWWgZb7
CI no longer builds or tests them, so they no longer meet the tier 2 "guaranteed to build" bar. Tier 3 = supported in code, untested, may or may not work — use Docker. Claude-Session: https://claude.ai/code/session_01VUPwpe81Ws8c5MeXWWgZb7
upbqdn
commented
Jun 28, 2026
upbqdn
left a comment
Member
Author
There was a problem hiding this comment.
This turned out to be a lot more trivial than I thought. Adding any OS back should be trivial as well, then, if we ever find we need it back.
Remove the `cfg(not(windows))` / `cfg(not(macos))` skips and the nextest `delete_old_databases` Windows filter, now that neither platform runs in CI. For feature-combined gates, keep the `#[cfg(feature = ...)]` and drop only the OS predicate. Genuine platform-abstraction code (`stop()`, `random_known_port`, `default_lwd_cache_dir`) is left intact. Claude-Session: https://claude.ai/code/session_01VUPwpe81Ws8c5MeXWWgZb7
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.
Motivation
Closes #10844
Windows and macOS unit-test runners are unnecessary CI overhead. No relevant node operators run those OSes; other enthusiasts should use Docker.
Solution
Drop the Windows/macOS unit-test matrix and the brew/choco install branches from
setup-zebra-build. Linux only.Demote macOS and Windows from tier 2 to tier 3 in the platform-support docs, since CI no longer builds or tests them.
AI Disclosure