From f155d28833c3b4a4a99f7b0c9b24eb96616d4211 Mon Sep 17 00:00:00 2001 From: Matt Robinson Date: Mon, 8 Apr 2024 09:53:20 -0600 Subject: [PATCH] Enable `--nolegacy_important_outputs` BuildBuddy suggests this to Significantly reduce the payload size of the uploaded build event stream by eliminating duplicate file references. Signed-off-by: Matt Robinson --- .bazelrc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.bazelrc b/.bazelrc index bb48531..6ac3ac1 100644 --- a/.bazelrc +++ b/.bazelrc @@ -54,6 +54,10 @@ build:remote_cache --remote_timeout=3600 # https://bazel.build/reference/command-line-reference#flag--experimental_remote_cache_compression build:remote_cache --experimental_remote_cache_compression +# Significantly reduce the payload size of the uploaded build event +# stream by eliminating duplicate file references +build --nolegacy_important_outputs + # By default don't upload local results to remote cache, only CI does this. build --noremote_upload_local_results build:ci --remote_upload_local_results