mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 22:14:59 +00:00
* Bwc testclusters all (#46265) Convert all bwc projects to testclusters * Fix bwc versions config * WIP fix rolling upgrade * Fix bwc tests on old versions * Fix rolling upgrade
23 lines
792 B
Groovy
23 lines
792 B
Groovy
|
|
import org.elasticsearch.gradle.test.RestIntegTestTask
|
|
import org.elasticsearch.gradle.testclusters.TestClustersPlugin
|
|
|
|
subprojects { Project subproj ->
|
|
subproj.tasks.withType(RestIntegTestTask) {
|
|
if (subproj.extensions.findByName("${it.name}Cluster")) {
|
|
subproj.extensions.configure("${it.name}Cluster") { cluster ->
|
|
cluster.distribution = System.getProperty('tests.distribution', 'oss')
|
|
}
|
|
}
|
|
}
|
|
plugins.withType(TestClustersPlugin).whenPluginAdded {
|
|
testClusters.all {
|
|
String configuredTestDistribution = System.getProperty('tests.distribution', 'oss').toUpperCase()
|
|
testDistribution = configuredTestDistribution
|
|
if (configuredTestDistribution.equals("DEFAULT")) {
|
|
setting "xpack.security.enabled", "false"
|
|
}
|
|
}
|
|
}
|
|
}
|