Skip to content

Commit 1f8fd04

Browse files
authored
feat: configurable ecsact build report filter (#45)
1 parent f4ec81e commit 1f8fd04

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ecsact/private/ecsact_binary.bzl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ def _ecsact_binary_impl(ctx):
4040
args.add("-o", runtime_output_file)
4141
args.add("--temp_dir", temp_dir.path)
4242
args.add("-f", "text")
43-
args.add("--report_filter", "errors_and_warnings")
43+
44+
report_filter = ctx.var.get("ECSACT_CLI_REPORT_FILTER", "errors_and_warnings")
45+
args.add("--report_filter", report_filter)
4446

4547
compiler_config = {
4648
"compiler_type": "auto",

0 commit comments

Comments
 (0)