From b6e11d802a46ba7362a5403c18cd6becd8ed7bc9 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 26 Mar 2025 16:56:11 +0000 Subject: [PATCH] build: disable remote upload of local action results to RBE cache disable remote upload for local actions --- .bazelrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index d736ebd75612..bf6560235d64 100644 --- a/.bazelrc +++ b/.bazelrc @@ -135,6 +135,7 @@ build:remote --platforms=@devinfra//bazel/remote-execution:platform_with_network # Set remote caching settings build:remote --remote_accept_cached=true +build:remote --remote_upload_local_results=false # Force remote executions to consider the entire run as linux. # This is required for OSX cross-platform RBE. @@ -147,7 +148,7 @@ build:remote --google_default_credentials # Use HTTP remote cache build:remote-cache --remote_cache=https://storage.googleapis.com/angular-team-cache build:remote-cache --remote_accept_cached=true -build:remote-cache --remote_upload_local_results=true +build:remote-cache --remote_upload_local_results=false build:remote-cache --google_default_credentials ###############################