Skip to content

Commit

Permalink
Execution failed for task ':test:fixtures:azure/s3/hdfs/gcs-fixture:c…
Browse files Browse the repository at this point in the history
…omposeDown' (#1824) (#1825)

Signed-off-by: Andriy Redko <[email protected]>
  • Loading branch information
reta authored Dec 29, 2021
1 parent a81b98c commit 9742fb6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/fixtures/azure-fixture/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,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 {
Expand Down
4 changes: 4 additions & 0 deletions test/fixtures/gcs-fixture/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,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 {
Expand Down
4 changes: 4 additions & 0 deletions test/fixtures/krb5kdc-fixture/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
4 changes: 4 additions & 0 deletions test/fixtures/s3-fixture/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,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 {
Expand Down

0 comments on commit 9742fb6

Please sign in to comment.