Skip to content

Commit 99ca86f

Browse files
authored
Revert "[6.0.0] Default --incompatible_strict_conflict_checks to true. (bazelbuild#16864)" (bazelbuild#16872)
This reverts commit fe16965. Breaks rules_apple (and possibily other projects).
1 parent fe16965 commit 99ca86f

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

src/main/java/com/google/devtools/build/lib/analysis/AnalysisOptions.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,8 @@ public class AnalysisOptions extends OptionsBase {
9191
public boolean skyframePrepareAnalysis;
9292

9393
@Option(
94-
name = "incompatible_strict_conflict_checks",
95-
oldName = "experimental_strict_conflict_checks",
96-
defaultValue = "true",
94+
name = "experimental_strict_conflict_checks",
95+
defaultValue = "false",
9796
documentationCategory = OptionDocumentationCategory.UNDOCUMENTED,
9897
metadataTags = OptionMetadataTag.INCOMPATIBLE_CHANGE,
9998
effectTags = {OptionEffectTag.BAZEL_INTERNAL_CONFIGURATION},

src/test/java/com/google/devtools/build/lib/remote/BuildWithoutTheBytesIntegrationTest.java

-4
Original file line numberDiff line numberDiff line change
@@ -312,8 +312,6 @@ public void symlinkToDirectory() throws Exception {
312312

313313
@Test
314314
public void symlinkToNestedFile() throws Exception {
315-
addOptions("--noincompatible_strict_conflict_checks");
316-
317315
write(
318316
"a/defs.bzl",
319317
"def _impl(ctx):",
@@ -366,8 +364,6 @@ public void symlinkToNestedFile() throws Exception {
366364

367365
@Test
368366
public void symlinkToNestedDirectory() throws Exception {
369-
addOptions("--noincompatible_strict_conflict_checks");
370-
371367
write(
372368
"a/defs.bzl",
373369
"def _impl(ctx):",

0 commit comments

Comments
 (0)