Skip to content

Commit

Permalink
Move discard_actions_after_execution to graveyard.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 545428159
Change-Id: Iae2327e89ac99a7e7b0c83d0243955d205306cac
  • Loading branch information
meisterT authored and copybara-github committed Jul 4, 2023
1 parent a07e186 commit bc99d41
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,15 @@ public static class BuildGraveyardOptions extends OptionsBase {
},
help = "no-op")
public boolean actionCacheStoreOutputMetadata;

@Option(
name = "discard_actions_after_execution",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
metadataTags = OptionMetadataTag.INCOMPATIBLE_CHANGE,
effectTags = {OptionEffectTag.LOSES_INCREMENTAL_STATE},
help = "This option is deprecated and has no effect.")
public boolean discardActionsAfterExecution;
}

/** 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 @@ -383,15 +383,6 @@ public boolean useTopLevelTargetsForSymlinks() {
+ " prerequisites for rewinding are met (no incrementality, no action cache).")
public boolean rewindLostInputs;

@Option(
name = "discard_actions_after_execution",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
metadataTags = OptionMetadataTag.INCOMPATIBLE_CHANGE,
effectTags = {OptionEffectTag.LOSES_INCREMENTAL_STATE},
help = "This option is deprecated and has no effect.")
public boolean discardActionsAfterExecution;

@Option(
name = "incompatible_skip_genfiles_symlink",
defaultValue = "true",
Expand Down

0 comments on commit bc99d41

Please sign in to comment.