Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions examples/wheel/private/wheel_utils.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def _directory_writer_impl(ctx):

ctx.actions.run(
outputs = [output],
mnemonic = "PyDirWriter",
arguments = [args],
executable = ctx.executable._writer,
)
Expand Down
1 change: 1 addition & 0 deletions gazelle/manifest/defs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,7 @@ def _sources_hash_impl(ctx):
args.add_all(all_srcs)
ctx.actions.run(
outputs = [hash_file],
mnemonic = "PyGazelleManifestHash",
inputs = all_srcs,
arguments = [args],
executable = ctx.executable._hasher,
Expand Down
2 changes: 2 additions & 0 deletions gazelle/modules_mapping/def.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def _modules_mapping_impl(ctx):

ctx.actions.run(
inputs = [whl],
mnemonic = "PyGazelleModMapGen",
outputs = [wheel_modules_mapping],
executable = ctx.executable._generator,
arguments = [args],
Expand All @@ -57,6 +58,7 @@ def _modules_mapping_impl(ctx):

ctx.actions.run(
inputs = per_wheel_outputs,
mnemonic = "PyGazelleModMapMerge",
outputs = [modules_mapping],
executable = ctx.executable._merger,
arguments = [merge_args],
Expand Down
1 change: 1 addition & 0 deletions sphinxdocs/private/sphinx.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ def _sphinx_inventory_impl(ctx):
args.add(output)
ctx.actions.run(
executable = ctx.executable._builder,
mnemonic = "SphinxInventoryBuilder",
arguments = [args],
inputs = depset([ctx.file.src]),
outputs = [output],
Expand Down