Exclude Bazel 6 from macOS CI matrix - #69
Merged
Merged
Conversation
Bazel 6 is incompatible with newer macOS runners due to a dyld "missing LC_UUID load command in wrapped_clang" error. Keep Bazel 6 testing on Ubuntu only. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Bazel 6 reached end-of-life on December 31, 2025 and receives no further support. rules_go also no longer tests against Bazel 6 in CI despite still listing it in their README. Keep testing Bazel 7 and 8 only. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Bazel 9 is the current active LTS release. Test against it in both WORKSPACE and bzlmod jobs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Bazel 9 removed sh_test from native rules — it must be loaded from @rules_shell. Adding Bazel 9 support requires updating tests/BUILD and is out of scope for this PR. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Bazel 9 removed sh_test from native rules. Add rules_shell as a dependency and explicitly load sh_test in tests/BUILD. Also removes the deprecated compatibility_level attribute from MODULE.bazel. Tested locally: all 25 tests pass on Bazel 7.6.1, 8.4.0, and 9.2.0. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
macos-latestrunners withdyld: missing LC_UUID load command in wrapped_clang— a known incompatibility between Bazel 6'swrapped_clangand newer macOS/Xcode versionsmacos-latest + 6.5.0combination from the CI test matrixThis also unblocks PR #67 which is failing due to this same infrastructure issue.
Test plan
🤖 Generated with Claude Code