From 25558ada3fb377cfc2c965d3a93250ca28ce0fc1 Mon Sep 17 00:00:00 2001 From: Chi Wang Date: Wed, 9 Nov 2022 08:17:09 -0800 Subject: [PATCH] =?UTF-8?q?Add=20--experimental=5Faction=5Fcache=5Fstore?= =?UTF-8?q?=5Foutput=5Fmetadata=20to=20the=20expansio=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit …n of flag --remote_download_{toplevel,minimal}. So users don't need to add it manually. It is always desired to use this flag along with BwoB. Closes #13912. Closes #16720. PiperOrigin-RevId: 487248820 Change-Id: I94f6486a0a61522dc9000de7e9a595ace65c97e2 --- .../build/lib/remote/options/RemoteOptions.java | 16 ++++++++++------ .../BuildWithoutTheBytesIntegrationTest.java | 1 - .../bazel/remote/build_without_the_bytes_test.sh | 12 ------------ 3 files changed, 10 insertions(+), 19 deletions(-) diff --git a/src/main/java/com/google/devtools/build/lib/remote/options/RemoteOptions.java b/src/main/java/com/google/devtools/build/lib/remote/options/RemoteOptions.java index dbe1cff71237dc..210588e8140adb 100644 --- a/src/main/java/com/google/devtools/build/lib/remote/options/RemoteOptions.java +++ b/src/main/java/com/google/devtools/build/lib/remote/options/RemoteOptions.java @@ -473,15 +473,17 @@ public RemoteOutputsStrategyConverter() { "--nobuild_runfile_links", "--experimental_inmemory_jdeps_files", "--experimental_inmemory_dotd_files", + "--experimental_action_cache_store_output_metadata", "--remote_download_outputs=minimal" }, category = "remote", documentationCategory = OptionDocumentationCategory.OUTPUT_PARAMETERS, effectTags = {OptionEffectTag.AFFECTS_OUTPUTS}, help = - "Does not download any remote build outputs to the local machine. This flag is a " - + "shortcut for three flags: --experimental_inmemory_jdeps_files, " - + "--experimental_inmemory_dotd_files and " + "Does not download any remote build outputs to the local machine. This flag is a shortcut" + + " for flags: --experimental_inmemory_jdeps_files," + + " --experimental_inmemory_dotd_files," + + " --experimental_action_cache_store_output_metadata and " + "--remote_download_outputs=minimal.") public Void remoteOutputsMinimal; @@ -492,15 +494,17 @@ public RemoteOutputsStrategyConverter() { expansion = { "--experimental_inmemory_jdeps_files", "--experimental_inmemory_dotd_files", + "--experimental_action_cache_store_output_metadata", "--remote_download_outputs=toplevel" }, category = "remote", documentationCategory = OptionDocumentationCategory.OUTPUT_PARAMETERS, effectTags = {OptionEffectTag.AFFECTS_OUTPUTS}, help = - "Only downloads remote outputs of top level targets to the local machine. This flag is a " - + "shortcut for three flags: --experimental_inmemory_jdeps_files, " - + "--experimental_inmemory_dotd_files and " + "Only downloads remote outputs of top level targets to the local machine. This flag is a" + + " shortcut for flags: --experimental_inmemory_jdeps_files," + + " --experimental_inmemory_dotd_files," + + " --experimental_action_cache_store_output_metadata and " + "--remote_download_outputs=toplevel.") public Void remoteOutputsToplevel; diff --git a/src/test/java/com/google/devtools/build/lib/remote/BuildWithoutTheBytesIntegrationTest.java b/src/test/java/com/google/devtools/build/lib/remote/BuildWithoutTheBytesIntegrationTest.java index 2db4ea11d070a3..70e138cbc34ed3 100644 --- a/src/test/java/com/google/devtools/build/lib/remote/BuildWithoutTheBytesIntegrationTest.java +++ b/src/test/java/com/google/devtools/build/lib/remote/BuildWithoutTheBytesIntegrationTest.java @@ -51,7 +51,6 @@ protected void setupOptions() throws Exception { addOptions( "--remote_executor=grpc://localhost:" + worker.getPort(), "--remote_download_minimal", - "--experimental_action_cache_store_output_metadata", "--dynamic_local_strategy=standalone", "--dynamic_remote_strategy=remote"); } diff --git a/src/test/shell/bazel/remote/build_without_the_bytes_test.sh b/src/test/shell/bazel/remote/build_without_the_bytes_test.sh index d71a9155861164..477a2f0bd8335f 100755 --- a/src/test/shell/bazel/remote/build_without_the_bytes_test.sh +++ b/src/test/shell/bazel/remote/build_without_the_bytes_test.sh @@ -155,7 +155,6 @@ EOF bazel build \ --experimental_ui_debug_all_events \ - --experimental_action_cache_store_output_metadata \ --remote_executor=grpc://localhost:${worker_port} \ --remote_download_minimal \ //a:foobar >& $TEST_log || fail "Failed to build //a:foobar" @@ -171,7 +170,6 @@ EOF bazel build \ --experimental_ui_debug_all_events \ - --experimental_action_cache_store_output_metadata \ --remote_executor=grpc://localhost:${worker_port} \ --remote_download_minimal \ //a:foobar >& $TEST_log || fail "Failed to build //a:foobar" @@ -1173,14 +1171,6 @@ EOF } function test_download_toplevel_when_turn_remote_cache_off() { - download_toplevel_when_turn_remote_cache_off -} - -function test_download_toplevel_when_turn_remote_cache_off_with_metadata() { - download_toplevel_when_turn_remote_cache_off --experimental_action_cache_store_output_metadata -} - -function download_toplevel_when_turn_remote_cache_off() { # Test that BwtB doesn't cause build failure if remote cache is disabled in a following build. # See https://github.com/bazelbuild/bazel/issues/13882. @@ -1215,7 +1205,6 @@ EOF bazel build \ --remote_cache=grpc://localhost:${worker_port} \ --remote_download_toplevel \ - "$@" \ //a:consumer >& $TEST_log || fail "Failed to download outputs" [[ -f bazel-bin/a/a.txt ]] || [[ -f bazel-bin/a/b.txt ]] \ && fail "Expected outputs of producer are not downloaded" @@ -1224,7 +1213,6 @@ EOF echo 'bar' > a/in.txt bazel build \ --remote_download_toplevel \ - "$@" \ //a:consumer >& $TEST_log || fail "Failed to build without remote cache" }