Execution failed for task ':test:fixtures:azure/s3/hdfs/gcs-fixture:composeDown' (#1824)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
This commit is contained in:
parent
c05e0d90bd
commit
abe4b97199
|
@ -40,6 +40,10 @@ dependencies {
|
|||
|
||||
preProcessFixture {
|
||||
dependsOn jar, configurations.runtimeClasspath
|
||||
// always run the task, otherwise the folders won't be created
|
||||
outputs.upToDateWhen {
|
||||
false
|
||||
}
|
||||
doLast {
|
||||
file("${testFixturesDir}/shared").mkdirs()
|
||||
project.copy {
|
||||
|
|
|
@ -40,6 +40,10 @@ dependencies {
|
|||
group = 'fixture.gcs'
|
||||
preProcessFixture {
|
||||
dependsOn jar, configurations.runtimeClasspath
|
||||
// always run the task, otherwise the folders won't be created
|
||||
outputs.upToDateWhen {
|
||||
false
|
||||
}
|
||||
doLast {
|
||||
file("${testFixturesDir}/shared").mkdirs()
|
||||
project.copy {
|
||||
|
|
|
@ -38,6 +38,10 @@ preProcessFixture.doLast {
|
|||
}
|
||||
|
||||
postProcessFixture {
|
||||
// always run the task, otherwise the folders won't be created
|
||||
outputs.upToDateWhen {
|
||||
false
|
||||
}
|
||||
inputs.dir("${testFixturesDir}/shared")
|
||||
services.each { service ->
|
||||
File confTemplate = file("${testFixturesDir}/shared/${service}/krb5.conf.template")
|
||||
|
|
|
@ -40,6 +40,10 @@ dependencies {
|
|||
|
||||
preProcessFixture {
|
||||
dependsOn jar, configurations.runtimeClasspath
|
||||
// always run the task, otherwise the folders won't be created
|
||||
outputs.upToDateWhen {
|
||||
false
|
||||
}
|
||||
doLast {
|
||||
file("${testFixturesDir}/shared").mkdirs()
|
||||
project.copy {
|
||||
|
|
Loading…
Reference in New Issue