Skip to content
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

Actions should offer a proper mnemonic #257

Merged
merged 1 commit into from
May 29, 2024
Merged
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
3 changes: 2 additions & 1 deletion src/aspect/dwyu.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def _process_target(ctx, target, defines, output_path, is_target_under_inspectio
inputs = header_files,
executable = ctx.executable._process_target,
arguments = [args],
mnemonic = "DwyuProcessTargetInfo",
outputs = [processing_output],
)

Expand Down Expand Up @@ -248,7 +249,7 @@ def dwyu_aspect_impl(target, ctx):
executable = ctx.executable._dwyu_binary,
inputs = analysis_inputs,
outputs = [report_file],
mnemonic = "CompareIncludesToDependencies",
mnemonic = "DwyuAnalyzeIncludes",
progress_message = "Analyze dependencies of {}".format(target.label),
arguments = [args],
)
Expand Down