[Migrate](https://bazel.build/external/migration) to Bazel's ["new" module system](https://bazel.build/external/overview). - #1940
Merged
Conversation
copybara-service
Bot
force-pushed
the
test_957336448
branch
from
July 31, 2026 22:43
1ee66e1 to
94fe3a4
Compare
…odule system](https://bazel.build/external/overview). My immediate win is that this includes migrating off the old version of bazel-common that includes `google_common_workspace_rules()`: Calling `google_common_workspace_rules()` leads to trouble under macos-latest (as previously in 1701108): ``` ERROR: /Users/runner/work/guice/guice/WORKSPACE:26:30: fetching android_sdk_repository rule //external:androidsdk: Android SDK api level 34 was requested but it is not installed in the Android SDK at /Users/runner/Library/Android/sdk. The api levels found were [36, 35]. Please choose an available api level or install api level 34 from the Android SDK Manager. ERROR: Analysis of target '//tools:osgi_wrapper' failed; build aborted: Android SDK api level 34 was requested but it is not installed in the Android SDK at /Users/runner/Library/Android/sdk. The api levels found were [36, 35]. Please choose an available api level or install api level 34 from the Android SDK Manager. ``` RELNOTES=n/a PiperOrigin-RevId: 957370304
copybara-service
Bot
force-pushed
the
test_957336448
branch
from
July 31, 2026 22:50
94fe3a4 to
174317a
Compare
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.
Migrate to Bazel's "new" module system.
My immediate win is that this includes migrating off the old version of bazel-common that includes
google_common_workspace_rules(): Callinggoogle_common_workspace_rules()leads to trouble under macos-latest (as previously in 1701108):RELNOTES=n/a