Browse Source

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

Mark Vieira 5 năm trước cách đây
mục cha
commit
9245dd9120
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      x-pack/test/idp-fixture/build.gradle

+ 5 - 0
x-pack/test/idp-fixture/build.gradle

@@ -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
+}