From 0b914c6f2a5114f1b81f44bab348fb415177e53e Mon Sep 17 00:00:00 2001 From: Tiago Quelhas Date: Fri, 6 May 2022 08:02:37 -0700 Subject: [PATCH] Send remote actions to specific worker pools instead of machine types. 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 #15406. PiperOrigin-RevId: 446988077 --- BUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BUILD b/BUILD index b977f61223345c..5eb64a98897fd6 100644 --- a/BUILD +++ b/BUILD @@ -213,6 +213,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",) exec_properties = { "dockerNetwork": "standard", "dockerPrivileged": "true", + "Pool": "default", }, parents = ["@" + platform_name + "//config:platform"], ) @@ -228,7 +229,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",) "//:highcpu_machine", ], exec_properties = { - "gceMachineType": "e2-highcpu-32", + "Pool": "highcpu", }, parents = ["//:" + platform_name + "_platform"], )