Skip to content

Commit

Permalink
Support more worker types for scala_proto
Browse files Browse the repository at this point in the history
  • Loading branch information
jjudd committed Aug 26, 2024
1 parent 863aa59 commit 40ee856
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion rules/scala_proto/private/core.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,14 @@ def scala_proto_library_implementation(ctx):
tools = compiler_inputs,
input_manifests = input_manifests,
progress_message = "Compiling %{label} protobuf into Scala source",
execution_requirements = _resolve_execution_reqs(ctx, {"supports-workers": supports_workers}),
execution_requirements = _resolve_execution_reqs(
ctx,
{
"supports-multiplex-workers": supports_workers,
"supports-workers": supports_workers,
"supports-multiplex-sandboxing": supports_workers,
},
),
arguments = [args],
)

Expand Down

0 comments on commit 40ee856

Please sign in to comment.