Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8c80ef8

Browse files
fmeumtjgq
andauthoredNov 7, 2022
Send remote actions to specific worker pools instead of machine types. (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 <[email protected]>
1 parent bc087f4 commit 8c80ef8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎BUILD

+2-1
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",)
212212
exec_properties = {
213213
"dockerNetwork": "standard",
214214
"dockerPrivileged": "true",
215+
"Pool": "default",
215216
},
216217
parents = ["@" + platform_name + "//config:platform"],
217218
)
@@ -227,7 +228,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",)
227228
"//:highcpu_machine",
228229
],
229230
exec_properties = {
230-
"gceMachineType": "e2-highcpu-32",
231+
"Pool": "highcpu",
231232
},
232233
parents = ["//:" + platform_name + "_platform"],
233234
)

0 commit comments

Comments
 (0)
Please sign in to comment.