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
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
  • Loading branch information
tjgq authored and Copybara-Service committed May 6, 2022
1 parent 2e9643c commit 0b914c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BUILD
Expand Up @@ -213,6 +213,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",)
exec_properties = {
"dockerNetwork": "standard",
"dockerPrivileged": "true",
"Pool": "default",
},
parents = ["@" + platform_name + "//config:platform"],
)
Expand All @@ -228,7 +229,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 0b914c6

Please sign in to comment.