From 99740dd1e83ecf983aed56420f86ec7a06a1ab42 Mon Sep 17 00:00:00 2001 From: Chuck Grindel Date: Fri, 1 Dec 2023 13:17:41 -0700 Subject: [PATCH 1/3] chore: add bazelrc files to .gitignore --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index e06f08a..14fd94b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,5 @@ /**/bazel-* + +# These files are specific to the host. +.bazelrc.auth +.bazelrc.local From afc6ee225d87055acf108746db39ad88320f4139 Mon Sep 17 00:00:00 2001 From: Chuck Grindel Date: Fri, 1 Dec 2023 13:22:35 -0700 Subject: [PATCH 2/3] chore: add cache compression flag --- .bazelrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.bazelrc b/.bazelrc index b78b836..58418b5 100644 --- a/.bazelrc +++ b/.bazelrc @@ -8,6 +8,7 @@ build:remote-cache --remote_timeout=3600 build:remote-cache --keep_backend_build_event_connections_alive=false # All clients except CI should be configured as read-only build:remote-cache --noremote_upload_local_results +build:remote-cache --experimental_remote_cache_compression # CI Configuration build:ci --config=remote-cache From 2125dad84600d9b80835549387bad0b1f7b763a4 Mon Sep 17 00:00:00 2001 From: Chuck Grindel Date: Fri, 1 Dec 2023 13:43:09 -0700 Subject: [PATCH 3/3] Remove compression flag. Win2019, workspace, 5.3.0 Bazel crash --- .bazelrc | 1 - 1 file changed, 1 deletion(-) diff --git a/.bazelrc b/.bazelrc index 58418b5..b78b836 100644 --- a/.bazelrc +++ b/.bazelrc @@ -8,7 +8,6 @@ build:remote-cache --remote_timeout=3600 build:remote-cache --keep_backend_build_event_connections_alive=false # All clients except CI should be configured as read-only build:remote-cache --noremote_upload_local_results -build:remote-cache --experimental_remote_cache_compression # CI Configuration build:ci --config=remote-cache