From 1d490cb4bf6761d1662270ce06d93ca5e713bf39 Mon Sep 17 00:00:00 2001 From: Junji Watanabe Date: Fri, 4 Nov 2022 15:44:35 +0900 Subject: [PATCH] [infra] Fix debug_bot_arm to have use_goma=true Linux Debug (ARM) builder is still using Goma. https://ci.chromium.org/ui/p/webrtc/builders/ci/Linux32%20Debug%20(ARM)/18995/overview `Override MB config to use reclient` step fails to replace use_goma=true with use_remoteexec=true because there is no use_goma=true in this builder's mb config. I don't know why the builder uses Goma without use_goma=true. But, maybe this is due to the default setting or some recipe logic. Bug: b:239908030 Change-Id: Iabf0c857144769e842c5f4080fe01339841d8c0c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/281820 Reviewed-by: Christoffer Jansson Auto-Submit: Junji Watanabe Commit-Queue: Junji Watanabe Cr-Commit-Position: refs/heads/main@{#38550} --- tools_webrtc/mb/mb_config.pyl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools_webrtc/mb/mb_config.pyl b/tools_webrtc/mb/mb_config.pyl index 50fe50629e..4a6668e69f 100644 --- a/tools_webrtc/mb/mb_config.pyl +++ b/tools_webrtc/mb/mb_config.pyl @@ -249,8 +249,7 @@ 'bwe_test_logging_x64': ['debug_bot', 'x64', 'bwe_test_logging'], 'bwe_test_logging_x86': ['debug_bot', 'x86', 'bwe_test_logging'], 'codesearch_gen_linux_bot': ['openh264', 'debug_bot', 'minimal_symbols'], - # TODO(kjellander): Restore Goma for this when crbug.com/726706 is fixed. - 'debug_bot_arm': ['openh264', 'debug', 'arm'], + 'debug_bot_arm': ['openh264', 'debug_bot', 'arm'], 'debug_bot_arm64': ['openh264', 'debug_bot', 'arm64'], 'debug_bot_x64': ['openh264', 'debug_bot', 'x64'], 'debug_bot_x86': ['openh264', 'debug_bot', 'x86'],