From c416a8c31c1d9d2f60805acd5d6564ad1e711a01 Mon Sep 17 00:00:00 2001 From: Mark Vieira Date: Wed, 28 Jul 2021 09:07:08 -0700 Subject: [PATCH] Avoid running all EQL BWC tasks when running check (#75743) The bwc-test plugin automatically wires up BWC tasks to the appropriate lifecycle tasks for us. There's no need to do this explicitly. Running 'check' should only run BWC tests against unreleased versions as-per convention. Released version tests are run via periodic jobs in CI. --- x-pack/plugin/eql/qa/mixed-node/build.gradle | 5 ----- 1 file changed, 5 deletions(-) diff --git a/x-pack/plugin/eql/qa/mixed-node/build.gradle b/x-pack/plugin/eql/qa/mixed-node/build.gradle index e02130fe89f52..e3e9d6428cfaa 100644 --- a/x-pack/plugin/eql/qa/mixed-node/build.gradle +++ b/x-pack/plugin/eql/qa/mixed-node/build.gradle @@ -58,9 +58,4 @@ for (Version bwcVersion : BuildParams.bwcVersions.wireCompatible.findAll { it.on tasks.register(bwcTaskName(bwcVersion)) { dependsOn "${baseName}#mixedClusterTest" } - - // run these bwc tests as part of the "check" task - tasks.named("check").configure { - dependsOn "${baseName}#mixedClusterTest" - } }