Skip to content

Commit

Permalink
Merge branch 'main' into configurable-more-annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
illicitonion authored Oct 5, 2023
2 parents 8b0af0f + f6bba6e commit dd035d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions cargo/private/cargo_build_script.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ def _cargo_build_script_impl(ctx):
mnemonic = "CargoBuildScriptRun",
progress_message = "Running Cargo build script {}".format(pkg_name),
env = env,
toolchain = None,
)

return [
Expand Down
1 change: 1 addition & 0 deletions rust/private/clippy.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,7 @@ See https://github.com/bazelbuild/rules_rust/pull/1264#discussion_r853241339 for
tools = [toolchain.clippy_driver],
arguments = args.all,
mnemonic = "Clippy",
toolchain = "@rules_rust//rust:toolchain_type",
)

return [
Expand Down
3 changes: 3 additions & 0 deletions rust/private/rustc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1268,6 +1268,7 @@ def rustc_compile_action(
formatted_version,
len(crate_info.srcs.to_list()),
),
toolchain = "@rules_rust//rust:toolchain_type",
)
if args_metadata:
ctx.actions.run(
Expand All @@ -1283,6 +1284,7 @@ def rustc_compile_action(
formatted_version,
len(crate_info.srcs.to_list()),
),
toolchain = "@rules_rust//rust:toolchain_type",
)
else:
# Run without process_wrapper
Expand All @@ -1301,6 +1303,7 @@ def rustc_compile_action(
formatted_version,
len(crate_info.srcs.to_list()),
),
toolchain = "@rules_rust//rust:toolchain_type",
)

if experimental_use_cc_common_link:
Expand Down

0 comments on commit dd035d8

Please sign in to comment.