Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[7.14] Avoid running all EQL BWC tasks when running check (#75743) #75796

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
mark-vieira authored and elasticsearchmachine committed Jul 28, 2021
commit 39effc614c6a6146058ee5217fd3260bd6a17845
5 changes: 0 additions & 5 deletions x-pack/plugin/eql/qa/mixed-node/build.gradle
Original file line number Diff line number Diff line change
@@ -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"
}
}