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:
Andriy Redko 2021-12-29 11:26:14 -05:00 committed by GitHub
parent c05e0d90bd
commit abe4b97199
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 0 deletions

View File

@ -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 {

View File

@ -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 {

View File

@ -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")

View File

@ -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 {