File tree Expand file tree Collapse file tree
buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -526,7 +526,11 @@ class VagrantTestPlugin implements Plugin<Project> {
526526 project. gradle. removeListener(batsPackagingReproListener)
527527 }
528528 if (project. extensions. esvagrant. boxes. contains(box)) {
529- packagingTest. dependsOn(batsPackagingTest)
529+ // these tests are temporarily disabled for suse boxes while we debug an issue
530+ // https://github.com/elastic/elasticsearch/issues/30295
531+ if (box. equals(" opensuse-42" ) == false && box. equals(" sles-12" ) == false ) {
532+ packagingTest. dependsOn(batsPackagingTest)
533+ }
530534 }
531535 }
532536
@@ -565,7 +569,11 @@ class VagrantTestPlugin implements Plugin<Project> {
565569 project. gradle. removeListener(javaPackagingReproListener)
566570 }
567571 if (project. extensions. esvagrant. boxes. contains(box)) {
568- packagingTest. dependsOn(javaPackagingTest)
572+ // these tests are temporarily disabled for suse boxes while we debug an issue
573+ // https://github.com/elastic/elasticsearch/issues/30295
574+ if (box. equals(" opensuse-42" ) == false && box. equals(" sles-12" ) == false ) {
575+ packagingTest. dependsOn(javaPackagingTest)
576+ }
569577 }
570578
571579 /*
You can’t perform that action at this time.
0 commit comments