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 @@ -547,7 +547,11 @@ class VagrantTestPlugin implements Plugin<Project> {
547
547
project. gradle. removeListener(batsPackagingReproListener)
548
548
}
549
549
if (project. extensions. esvagrant. boxes. contains(box)) {
550
- packagingTest. dependsOn(batsPackagingTest)
550
+ // these tests are temporarily disabled for suse boxes while we debug an issue
551
+ // https://github.com/elastic/elasticsearch/issues/30295
552
+ if (box. equals(" opensuse-42" ) == false && box. equals(" sles-12" ) == false ) {
553
+ packagingTest. dependsOn(batsPackagingTest)
554
+ }
551
555
}
552
556
}
553
557
@@ -586,7 +590,11 @@ class VagrantTestPlugin implements Plugin<Project> {
586
590
project. gradle. removeListener(javaPackagingReproListener)
587
591
}
588
592
if (project. extensions. esvagrant. boxes. contains(box)) {
589
- packagingTest. dependsOn(javaPackagingTest)
593
+ // these tests are temporarily disabled for suse boxes while we debug an issue
594
+ // https://github.com/elastic/elasticsearch/issues/30295
595
+ if (box. equals(" opensuse-42" ) == false && box. equals(" sles-12" ) == false ) {
596
+ packagingTest. dependsOn(javaPackagingTest)
597
+ }
590
598
}
591
599
592
600
/*
You can’t perform that action at this time.
0 commit comments