-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fall back to native rules if possible #10
Conversation
Provides compatibility with Bazel versions before 7.4.0. Also requires adding `bazel_skylib` to the dependency macro.
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.
One thing to fix is, rules_bzl bzl_library target to include those new .bzl files. Without it I can't wire up build encyclopedia.
shell/private/sh_binary.bzl
Outdated
|
||
load(":sh_executable.bzl", "make_sh_executable_rule") | ||
|
||
visibility("//shell") |
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.
This will also limit doc generation in Bazel, because I need to point it to the actual rules.
@comius I added the |
Looks good. Thanks! |
Provides compatibility with Bazel versions before 7.4.0.
Also requires adding
bazel_skylib
to the dependency macro.Fixes #9