mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-08 22:14:59 +00:00
* Related to #51541: [CI] unknown setting [xpack.eql.enabled] in release-tests
This commit is contained in:
parent
9dcc3ef7e6
commit
0d21d9e2c5
@ -1,3 +1,5 @@
|
|||||||
|
import org.elasticsearch.gradle.info.BuildParams
|
||||||
|
|
||||||
evaluationDependsOn(xpackModule('core'))
|
evaluationDependsOn(xpackModule('core'))
|
||||||
|
|
||||||
apply plugin: 'elasticsearch.esplugin'
|
apply plugin: 'elasticsearch.esplugin'
|
||||||
@ -44,13 +46,19 @@ task internalClusterTest(type: Test) {
|
|||||||
|
|
||||||
check.dependsOn internalClusterTest
|
check.dependsOn internalClusterTest
|
||||||
|
|
||||||
// add all sub-projects of the qa sub-project
|
/****************************************************************
|
||||||
gradle.projectsEvaluated {
|
* Enable QA/rest integration tests for snapshot builds only *
|
||||||
project.subprojects
|
* TODO: Enable for all builds upon this feature release *
|
||||||
.find { it.path == project.path + ":qa" }
|
****************************************************************/
|
||||||
.subprojects
|
if (BuildParams.isSnapshotBuild()) {
|
||||||
.findAll { it.path.startsWith(project.path + ":qa") }
|
// add all sub-projects of the qa sub-project
|
||||||
.each { check.dependsOn it.check }
|
gradle.projectsEvaluated {
|
||||||
|
project.subprojects
|
||||||
|
.find { it.path == project.path + ":qa" }
|
||||||
|
.subprojects
|
||||||
|
.findAll { it.path.startsWith(project.path + ":qa") }
|
||||||
|
.each { check.dependsOn it.check }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**********************************************
|
/**********************************************
|
||||||
|
Loading…
x
Reference in New Issue
Block a user