Skip to content

Commit

Permalink
Send remote actions to specific worker pools instead of machine types. (
Browse files Browse the repository at this point in the history
bazelbuild#16669)

This ensures that nobody else sends requests to the separate worker pool I've set up, so that my performance measurements aren't disturbed.

Closes bazelbuild#15406.

PiperOrigin-RevId: 446988077

Co-authored-by: Tiago Quelhas <tjgq@google.com>
  • Loading branch information
fmeum and tjgq authored Nov 7, 2022
1 parent bc087f4 commit 8c80ef8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",)
exec_properties = {
"dockerNetwork": "standard",
"dockerPrivileged": "true",
"Pool": "default",
},
parents = ["@" + platform_name + "//config:platform"],
)
Expand All @@ -227,7 +228,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",)
"//:highcpu_machine",
],
exec_properties = {
"gceMachineType": "e2-highcpu-32",
"Pool": "highcpu",
},
parents = ["//:" + platform_name + "_platform"],
)
Expand Down

0 comments on commit 8c80ef8

Please sign in to comment.