Skip to content

Commit

Permalink
Support more worker types for jacoco
Browse files Browse the repository at this point in the history
  • Loading branch information
jjudd committed Aug 26, 2024
1 parent 5e5b0ee commit 80843d2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion rules/private/phases/phase_coverage_jacoco.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ def phase_coverage_jacoco(ctx, g):
outputs = [in_out_pair[1] for in_out_pair in in_out_pairs],
executable = code_coverage_configuration.instrumentation_worker.files_to_run.executable,
input_manifests = worker_input_manifests,
execution_requirements = _resolve_execution_reqs(ctx, {"supports-workers": "1"}),
execution_requirements = _resolve_execution_reqs(
ctx,
{
"supports-multiplex-workers": "1",
"supports-workers": "1",
"supports-multiplex-sandboxing": "1",
},
),
arguments = [args],
)

Expand Down

0 comments on commit 80843d2

Please sign in to comment.