From eeba278c1351109cb71d25f8d2367a8e8c278946 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 8bc5528476a8d3..177abad8a4d0d2 100644 --- a/BUILD +++ b/BUILD @@ -212,6 +212,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",) exec_properties = { "dockerNetwork": "standard", "dockerPrivileged": "true", + "Pool": "default", }, parents = ["@" + platform_name + "//config:platform"], ) @@ -227,7 +228,7 @@ REMOTE_PLATFORMS = ("rbe_ubuntu1804_java11",) "//:highcpu_machine", ], exec_properties = { - "gceMachineType": "e2-highcpu-32", + "Pool": "highcpu", }, parents = ["//:" + platform_name + "_platform"], )