Skip to content

Commit

Permalink
Deprecate --experimental_multi_cpu.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 545426994
Change-Id: I82492988aa3dff03aea190b5f4d2d6928e413a7b
  • Loading branch information
meisterT authored and copybara-github committed Jul 4, 2023
1 parent 228f1bf commit cbfcab9
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 @@ -420,6 +420,18 @@ public static class BuildGraveyardOptions extends OptionsBase {
effectTags = {OptionEffectTag.TERMINAL_OUTPUT},
help = "Deprecated no-op.")
public boolean printWorkspaceInOutputPathsIfNeeded;

@Option(
name = "experimental_multi_cpu",
deprecationWarning = "This flag is a no-op and will be deleted in a future release.",
converter = Converters.CommaSeparatedOptionListConverter.class,
allowMultiple = true,
defaultValue = "null",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
metadataTags = {OptionMetadataTag.EXPERIMENTAL},
help = "Deprecated. No-op.")
public List<String> multiCpus;
}

/** 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 @@ -251,18 +251,6 @@ public class BuildRequestOptions extends OptionsBase {
+ "the convenienceSymlinksIdentified entry in the BuildEventProtocol will be empty.")
public boolean experimentalConvenienceSymlinksBepEvent;

@Option(
name = "experimental_multi_cpu",
deprecationWarning = "This flag is a no-op and will be deleted in a future release.",
converter = Converters.CommaSeparatedOptionListConverter.class,
allowMultiple = true,
defaultValue = "null",
documentationCategory = OptionDocumentationCategory.OUTPUT_PARAMETERS,
effectTags = {OptionEffectTag.AFFECTS_OUTPUTS},
metadataTags = {OptionMetadataTag.EXPERIMENTAL},
help = "Deprecated. No-op.")
public List<String> multiCpus;

@Option(
name = "output_tree_tracking",
oldName = "experimental_output_tree_tracking",
Expand Down

0 comments on commit cbfcab9

Please sign in to comment.