Disable composePull task on idp-fixture project due to error (#62510)

This commit is contained in:
Mark Vieira 2020-09-17 08:55:19 -07:00
parent 91e2330529
commit 7d36393b09
No known key found for this signature in database
GPG Key ID: CA947EF7E6D4B105
1 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,7 @@ elasticsearch_distributions {
failIfUnavailable = false // This ensures we skip this testing if Docker is unavailable
}
}
preProcessFixture {
dependsOn copyKeystore, elasticsearch_distributions.docker
doLast {
@ -35,3 +36,7 @@ preProcessFixture {
tasks.named('composeUp').configure {
dependsOn "preProcessFixture"
}
tasks.named('composePull').configure {
enabled = false // this task fails due to docker-compose oddities
}