Skip to content

Commit 6722e1a

Browse files
committed
Remove banner about bwc tests being disabled on mac
Signed-off-by: Craig Perkins <cwperx@amazon.com>
1 parent ba296fb commit 6722e1a

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

build.gradle

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -232,24 +232,6 @@ tasks.register("verifyVersions") {
232232

233233
boolean bwc_tests_enabled = true
234234

235-
/* place an issue link here when committing bwc changes */
236-
String bwc_tests_disabled_issue = ""
237-
238-
/* there's no existing MacOS release, therefore disable bcw tests */
239-
if (Os.isFamily(Os.FAMILY_MAC)) {
240-
bwc_tests_enabled = false
241-
bwc_tests_disabled_issue = "https://github.com/opensearch-project/OpenSearch/issues/4173"
242-
}
243-
244-
if (bwc_tests_enabled == false) {
245-
if (bwc_tests_disabled_issue.isEmpty()) {
246-
throw new GradleException("bwc_tests_disabled_issue must be set when bwc_tests_enabled == false")
247-
}
248-
println "========================= WARNING ========================="
249-
println " Backwards compatibility tests are disabled!"
250-
println "See ${bwc_tests_disabled_issue}"
251-
println "==========================================================="
252-
}
253235
if (project.gradle.startParameter.taskNames.find { it.startsWith("checkPart") } != null) {
254236
// Disable BWC tests for checkPart* tasks as it's expected that this will run un it's own check
255237
bwc_tests_enabled = false

0 commit comments

Comments
 (0)