From e2addce3c0e23efc4fd929f5b07444696946b052 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 bb1c3516d248c..af3f4a13dd22d 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" - } }