-
Notifications
You must be signed in to change notification settings - Fork 640
Add root_path attribute for directory crate roots
#4142
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
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1363cd6
Add `root_path` attribute for directory crate roots
krasimirgg 702cead
fix formatting
krasimirgg 743fd51
Merge branch 'main' into jul26-root-path
krasimirgg 33e9369
add some validation for the root path calculation:
krasimirgg bb4b7d7
Merge branch 'jul26-root-path' of https://github.com/krasimirgg/rules…
krasimirgg 590d6c5
Merge branch 'main' into jul26-root-path
krasimirgg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| load("@bazel_skylib//rules:build_test.bzl", "build_test") | ||
| load("//rust:defs.bzl", "rust_library", "rust_test") | ||
| load(":defs.bzl", "package_dir_artifact") | ||
|
|
||
| package(default_visibility = ["//visibility:private"]) | ||
|
|
||
| package_dir_artifact( | ||
| name = "dir_artifact", | ||
| srcs = [ | ||
| "src/lib.rs", | ||
| "src/submodule.rs", | ||
| ], | ||
| ) | ||
|
|
||
| rust_library( | ||
| name = "my_lib", | ||
| srcs = [":dir_artifact"], | ||
| root_path = "src/lib.rs", | ||
| ) | ||
|
|
||
| rust_test( | ||
| name = "my_lib_test", | ||
| crate = ":my_lib", | ||
| ) | ||
|
|
||
| build_test( | ||
| name = "build_test", | ||
| targets = [ | ||
| ":my_lib", | ||
| ], | ||
| ) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| """Custom rule to package sources into a directory TreeArtifact for testing root_path.""" | ||
|
|
||
| def _package_dir_artifact_impl(ctx): | ||
| outdir = ctx.actions.declare_directory(ctx.attr.name + ".dir") | ||
|
|
||
| args = ctx.actions.args() | ||
| args.add(outdir.path) | ||
| for src in ctx.files.srcs: | ||
| args.add(src.path) | ||
|
|
||
| ctx.actions.run_shell( | ||
| outputs = [outdir], | ||
| inputs = ctx.files.srcs, | ||
| command = 'out="$1"; shift; mkdir -p "$out/src"; cp "$@" "$out/src/"', | ||
| arguments = [args], | ||
| progress_message = "Packaging srcs into directory artifact %s" % outdir.short_path, | ||
| ) | ||
|
|
||
| return [ | ||
| DefaultInfo(files = depset([outdir])), | ||
| ] | ||
|
|
||
| package_dir_artifact = rule( | ||
| implementation = _package_dir_artifact_impl, | ||
| attrs = { | ||
| "srcs": attr.label_list( | ||
| allow_files = True, | ||
| mandatory = True, | ||
| ), | ||
| }, | ||
| ) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| pub mod submodule; | ||
|
|
||
| pub fn greeting() -> &'static str { | ||
| submodule::msg() | ||
| } | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| use super::*; | ||
|
|
||
| #[test] | ||
| fn test_greeting() { | ||
| assert_eq!(greeting(), "Hello from directory artifact!"); | ||
| } | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| pub fn msg() -> &'static str { | ||
| "Hello from directory artifact!" | ||
| } |
Oops, something went wrong.
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.
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.
@krasimirgg nit: Can we try to ensure all functions have docstrings with typed arguments? In the absence of type hints this is incredibly helpful for identifying broken contracts and bugs.
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.
#4162