Skip to content

Commit

Permalink
Revert "[6.0.0] Default --incompatible_strict_conflict_checks to true. (
Browse files Browse the repository at this point in the history
bazelbuild#16864)" (bazelbuild#16872)

This reverts commit fe16965.

Breaks rules_apple (and possibily other projects).
  • Loading branch information
tjgq committed Nov 29, 2022
1 parent fe16965 commit 99ca86f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Expand Up @@ -91,9 +91,8 @@ public class AnalysisOptions extends OptionsBase {
public boolean skyframePrepareAnalysis;

@Option(
name = "incompatible_strict_conflict_checks",
oldName = "experimental_strict_conflict_checks",
defaultValue = "true",
name = "experimental_strict_conflict_checks",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
metadataTags = OptionMetadataTag.INCOMPATIBLE_CHANGE,
effectTags = {OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION},
Expand Down
Expand Up @@ -312,8 +312,6 @@ public void symlinkToDirectory() throws Exception {

@Test
public void symlinkToNestedFile() throws Exception {
addOptions("--noincompatible_strict_conflict_checks");

write(
"a/defs.bzl",
"def _impl(ctx):",
Expand Down Expand Up @@ -366,8 +364,6 @@ public void symlinkToNestedFile() throws Exception {

@Test
public void symlinkToNestedDirectory() throws Exception {
addOptions("--noincompatible_strict_conflict_checks");

write(
"a/defs.bzl",
"def _impl(ctx):",
Expand Down

0 comments on commit 99ca86f

Please sign in to comment.