build: enhance check task instead of overwriting it.
(test task didn't run when check task ran)
This commit is contained in:
parent
596ec1848e
commit
7942e4082a
|
@ -31,11 +31,8 @@ task internalClusterTest(type: RandomizedTestingTask,
|
|||
systemProperty 'es.set.netty.runtime.available.processors', 'false'
|
||||
}
|
||||
|
||||
check {
|
||||
dependsOn = [internalClusterTest, 'qa:multi-cluster:followClusterTest', 'qa:multi-cluster-with-security:followClusterTest']
|
||||
}
|
||||
|
||||
internalClusterTest.mustRunAfter test
|
||||
check.dependsOn(internalClusterTest, 'qa:multi-cluster:followClusterTest', 'qa:multi-cluster-with-security:followClusterTest')
|
||||
|
||||
dependencies {
|
||||
compileOnly "org.elasticsearch:elasticsearch:${version}"
|
||||
|
|
Loading…
Reference in New Issue