From 29dca1c0c025bad32f9ae526d29311c486f68d81 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 17 Jan 2023 17:03:09 -0800 Subject: [PATCH] [buildtools] skip fetching `reclient` cipd package on linux-arm64 It doesn't exist for arm64-linux: https://chrome-infra-packages.appspot.com/p/infra/rbe/client See https://chromium-review.googlesource.com/c/v8/v8/+/3992966 Change-Id: I0175b5b4c9e20375240ce8e7e6b1f070f4147e27 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4166667 Commit-Queue: Sam Clegg Reviewed-by: Michael Achenbach Cr-Commit-Position: refs/heads/main@{#85374} --- DEPS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEPS b/DEPS index 22587202a1..95bae09f78 100644 --- a/DEPS +++ b/DEPS @@ -157,7 +157,7 @@ deps = { } ], 'dep_type': 'cipd', - 'condition': '(host_os == "linux" or host_os == "mac" or host_os == "win") and host_cpu != "s390" and host_cpu != "ppc"', + 'condition': '(host_os == "linux" or host_os == "mac" or host_os == "win") and host_cpu != "s390" and host_cpu != "ppc" and host_cpu != "arm64"', }, 'test/benchmarks/data': Var('chromium_url') + '/v8/deps/third_party/benchmarks.git' + '@' + '05d7188267b4560491ff9155c5ee13e207ecd65f',