File tree 1 file changed +10
-2
lines changed
buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -526,7 +526,11 @@ class VagrantTestPlugin implements Plugin<Project> {
526
526
project. gradle. removeListener(batsPackagingReproListener)
527
527
}
528
528
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
+ }
530
534
}
531
535
}
532
536
@@ -565,7 +569,11 @@ class VagrantTestPlugin implements Plugin<Project> {
565
569
project. gradle. removeListener(javaPackagingReproListener)
566
570
}
567
571
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
+ }
569
577
}
570
578
571
579
/*
You can’t perform that action at this time.
0 commit comments