From 8d74b28518e180256f1db1b28cf90214b48a243f Mon Sep 17 00:00:00 2001 From: Junji Watanabe Date: Tue, 13 Dec 2022 17:39:14 +0900 Subject: [PATCH] Do not try to install reclient on linux-arm64 reclient doesn't have linux-arm64 package. It will fail to fetch the project on linux-arm64. Bug: webrtc:14715, b/262231650 Change-Id: I7d79d950c64a28ab54b2e81425e37040af2e9874 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/287900 Commit-Queue: Junji Watanabe Reviewed-by: Christoffer Jansson Cr-Commit-Position: refs/heads/main@{#38877} --- DEPS | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DEPS b/DEPS index 08fb696c94..3b040d19db 100644 --- a/DEPS +++ b/DEPS @@ -93,11 +93,14 @@ deps = { 'src/buildtools/reclient': { 'packages': [ { + # https://chrome-infra-packages.appspot.com/p/infra/rbe/client/ 'package': 'infra/rbe/client/${{platform}}', 'version': Var('reclient_version'), } ], 'dep_type': 'cipd', + # Reclient doesn't have linux-arm64 package. + 'condition': 'not (host_os == "linux" and host_cpu == "arm64")', }, 'src/buildtools/clang_format/script':