Skip to content

Commit be13c69

Browse files
committed
Remove opensuse 42 from vagrant tests (#63759)
Opensuse 42 has not worked in a while. The test image is unmaintained, and cannot be launched. It was removed from CI packaging test runs, but still remained in vagrant tests. This commit removes it from vagrant tests.
1 parent 2f119bc commit be13c69

File tree

3 files changed

+2
-10
lines changed

3 files changed

+2
-10
lines changed

TESTING.asciidoc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,6 @@ These are the linux flavors supported, all of which we provide images for
380380
* oel-6 aka Oracle Enterprise Linux 6
381381
* oel-7 aka Oracle Enterprise Linux 7
382382
* sles-12
383-
* opensuse-42 aka Leap
384383

385384
We're missing the following from the support matrix because there aren't high
386385
quality boxes available in vagrant atlas:

Vagrantfile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,6 @@ Vagrant.configure(2) do |config|
121121
dnf_common config, box
122122
end
123123
end
124-
'opensuse-42'.tap do |box|
125-
config.vm.define box, define_opts do |config|
126-
config.vm.box = 'elastic/opensuse-42-x86_64'
127-
suse_common config, box
128-
end
129-
end
130124
'sles-12'.tap do |box|
131125
config.vm.define box, define_opts do |config|
132126
config.vm.box = 'elastic/sles-12-x86_64'

buildSrc/src/main/groovy/org/elasticsearch/gradle/vagrant/VagrantTestPlugin.groovy

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class VagrantTestPlugin implements Plugin<Project> {
2828
'fedora-27',
2929
'oel-6',
3030
'oel-7',
31-
'opensuse-42',
3231
'sles-12',
3332
'ubuntu-1404',
3433
'ubuntu-1604',
@@ -529,7 +528,7 @@ class VagrantTestPlugin implements Plugin<Project> {
529528
if (project.extensions.esvagrant.boxes.contains(box)) {
530529
// these tests are temporarily disabled for suse boxes while we debug an issue
531530
// https://github.com/elastic/elasticsearch/issues/30295
532-
if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
531+
if (box.equals("sles-12") == false) {
533532
packagingTest.dependsOn(batsPackagingTest)
534533
}
535534
}
@@ -572,7 +571,7 @@ class VagrantTestPlugin implements Plugin<Project> {
572571
if (project.extensions.esvagrant.boxes.contains(box)) {
573572
// these tests are temporarily disabled for suse boxes while we debug an issue
574573
// https://github.com/elastic/elasticsearch/issues/30295
575-
if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
574+
if (box.equals("sles-12") == false) {
576575
packagingTest.dependsOn(javaPackagingTest)
577576
}
578577
}

0 commit comments

Comments
 (0)