Skip to content

Commit

Permalink
Move action_cache_store_output_metadata to graveyard.
Browse files Browse the repository at this point in the history
It has been made a no-op in ec6ce5b

PiperOrigin-RevId: 545427428
Change-Id: Ife1bed961595e468673adf0a9c1d5b6906a22dc1
  • Loading branch information
meisterT authored and copybara-github committed Jul 4, 2023
1 parent cbfcab9 commit a07e186
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,18 @@ public static class BuildGraveyardOptions extends OptionsBase {
metadataTags = {OptionMetadataTag.EXPERIMENTAL},
help = "Deprecated. No-op.")
public List<String> multiCpus;

@Option(
name = "action_cache_store_output_metadata",
oldName = "experimental_action_cache_store_output_metadata",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {
OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION,
OptionEffectTag.HOST_MACHINE_RESOURCE_OPTIMIZATIONS
},
help = "no-op")
public boolean actionCacheStoreOutputMetadata;
}

/** This is where deprecated Bazel-specific options only used by the build command go to die. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,18 +373,6 @@ public boolean useTopLevelTargetsForSymlinks() {
help = "Whether to use the action cache")
public boolean useActionCache;

@Option(
name = "action_cache_store_output_metadata",
oldName = "experimental_action_cache_store_output_metadata",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {
OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION,
OptionEffectTag.HOST_MACHINE_RESOURCE_OPTIMIZATIONS
},
help = "no-op")
public boolean actionCacheStoreOutputMetadata;

@Option(
name = "rewind_lost_inputs",
defaultValue = "false",
Expand Down

0 comments on commit a07e186

Please sign in to comment.