From fb135d472660dc4237062996d8900548f81ba5c0 Mon Sep 17 00:00:00 2001 From: elasticsearchmachine <58790826+elasticsearchmachine@users.noreply.github.com> Date: Wed, 28 Jul 2021 12:53:51 -0400 Subject: [PATCH] Avoid running all EQL BWC tasks when running check (#75743) (#75796) 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. Co-authored-by: Mark Vieira --- 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" - } }