Build: Fail integ test if elasticsearch fails to start on windows
This commit is contained in:
parent
faf2aeb9e8
commit
f974d5e470
|
@ -139,7 +139,7 @@ class ClusterFormationTasks {
|
|||
// elasticsearch.bat is spawned as it has no daemon mode
|
||||
start = project.tasks.create(name: "${task.name}#start", type: DefaultTask, dependsOn: setup) << {
|
||||
// Fall back to Ant exec task as Gradle Exec task does not support spawning yet
|
||||
ant.exec(executable: 'cmd', spawn: true, dir: home) {
|
||||
ant.exec(executable: 'cmd', spawn: true, dir: home, failonerror: true) {
|
||||
esEnv.each { key, value -> env(key: key, value: value) }
|
||||
(['/C', 'call', 'bin/elasticsearch'] + esArgs).each { arg(value: it) }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue