Skip to content

Commit

Permalink
feat: configurable ecsact build report filter (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Apr 4, 2024
1 parent f4ec81e commit 1f8fd04
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ecsact/private/ecsact_binary.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ def _ecsact_binary_impl(ctx):
args.add("-o", runtime_output_file)
args.add("--temp_dir", temp_dir.path)
args.add("-f", "text")
args.add("--report_filter", "errors_and_warnings")

report_filter = ctx.var.get("ECSACT_CLI_REPORT_FILTER", "errors_and_warnings")
args.add("--report_filter", report_filter)

compiler_config = {
"compiler_type": "auto",
Expand Down

0 comments on commit 1f8fd04

Please # to comment.