19 lines
669 B
Groovy
19 lines
669 B
Groovy
import org.opensearch.gradle.test.RestIntegTestTask
|
|
import org.opensearch.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
|
|
}
|
|
}
|
|
}
|