From b5cf7b8ab4545101048b2abcc0fd8b6a7d832a65 Mon Sep 17 00:00:00 2001 From: Noah S-C Date: Thu, 25 Apr 2024 15:32:33 +0100 Subject: [PATCH] ci: don't remotely cache copy{dir,file} operations (#62152) --- .aspect/bazelrc/ci.sourcegraph.bazelrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.aspect/bazelrc/ci.sourcegraph.bazelrc b/.aspect/bazelrc/ci.sourcegraph.bazelrc index 4ffbe9b3293..a350b75a6b6 100644 --- a/.aspect/bazelrc/ci.sourcegraph.bazelrc +++ b/.aspect/bazelrc/ci.sourcegraph.bazelrc @@ -63,3 +63,11 @@ test --build_event_binary_file=build_event_log.bin test --build_event_binary_file_path_conversion=false test --build_event_binary_file_upload_mode=wait_for_upload_complete test --build_event_publish_all_actions=true +common --build_event_binary_file=build_event_log.bin +common --build_event_binary_file_path_conversion=false +common --build_event_binary_file_upload_mode=wait_for_upload_complete +common --build_event_publish_all_actions=true + +# These likely perform faster locally than the overhead of pulling/pushing from/to the remote cache, +# as well as being able to reduce how much we push to the cache +common --modify_execution_info=CopyDirectory=+no-remote,CopyToDirectory=+no-remote,CopyFile=+no-remote