-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add bash completion for external targets #20693
Conversation
d23d7df
to
2ee04c7
Compare
2ee04c7
to
eaa8e4d
Compare
|
eaa8e4d
to
c940d31
Compare
@Wyverald This PR is no longer stacked. |
@meteorcloudy The Darwin build fails even though I think I haven't touched any files that could affect the Python extension hash. Is this broken on master? |
Yes, this is now fixed at HEAD, please rebase! |
Completion for both repository names and targets in (fetched) external repositories is provided based on `bazel mod dump_repo_mapping`.
c940d31
to
b29e867
Compare
Tests are passing, thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the tests look great, so I'll just trust you with the bash parts :D thank you so much!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here! Sorry for the late review!
@bazel-io fork 7.1.0 |
Completion for both repository names and targets in (fetched) external repositories is provided based on `bazel mod dump_repo_mapping`. RELNOTES: Bazel's Bash completion can now complete external repository labels when using `--enable_bzlmod`. Closes bazelbuild#20693. PiperOrigin-RevId: 602923007 Change-Id: I7c7dfe3d90a2921f473c2d2fedbc054da67932ac
Completion for both repository names and targets in (fetched) external repositories is provided based on `bazel mod dump_repo_mapping`. RELNOTES: Bazel's Bash completion can now complete external repository labels when using `--enable_bzlmod`. Closes #20693. Commit a4c3d89 PiperOrigin-RevId: 602923007 Change-Id: I7c7dfe3d90a2921f473c2d2fedbc054da67932ac Co-authored-by: Fabian Meumertzheim <[email protected]>
The changes in this PR have been included in Bazel 7.1.0 RC1. Please test out the release candidate and report any issues as soon as possible. If you're using Bazelisk, you can point to the latest RC by setting USE_BAZEL_VERSION=last_rc. |
Completion for both repository names and targets in (fetched) external repositories is provided based on
bazel mod dump_repo_mapping
.RELNOTES: Bazel's Bash completion can now complete external repository labels when using
--enable_bzlmod
.