mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-09 06:25:07 +00:00
parent
c375d5ab23
commit
30d6fd3ca7
@ -526,9 +526,13 @@ class VagrantTestPlugin implements Plugin<Project> {
|
|||||||
project.gradle.removeListener(batsPackagingReproListener)
|
project.gradle.removeListener(batsPackagingReproListener)
|
||||||
}
|
}
|
||||||
if (project.extensions.esvagrant.boxes.contains(box)) {
|
if (project.extensions.esvagrant.boxes.contains(box)) {
|
||||||
|
// these tests are temporarily disabled for suse boxes while we debug an issue
|
||||||
|
// https://github.com/elastic/elasticsearch/issues/30295
|
||||||
|
if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
|
||||||
packagingTest.dependsOn(batsPackagingTest)
|
packagingTest.dependsOn(batsPackagingTest)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Task javaPackagingTest = project.tasks.create("vagrant${boxTask}#javaPackagingTest", VagrantCommandTask) {
|
Task javaPackagingTest = project.tasks.create("vagrant${boxTask}#javaPackagingTest", VagrantCommandTask) {
|
||||||
boxName box
|
boxName box
|
||||||
@ -565,8 +569,12 @@ class VagrantTestPlugin implements Plugin<Project> {
|
|||||||
project.gradle.removeListener(javaPackagingReproListener)
|
project.gradle.removeListener(javaPackagingReproListener)
|
||||||
}
|
}
|
||||||
if (project.extensions.esvagrant.boxes.contains(box)) {
|
if (project.extensions.esvagrant.boxes.contains(box)) {
|
||||||
|
// these tests are temporarily disabled for suse boxes while we debug an issue
|
||||||
|
// https://github.com/elastic/elasticsearch/issues/30295
|
||||||
|
if (box.equals("opensuse-42") == false && box.equals("sles-12") == false) {
|
||||||
packagingTest.dependsOn(javaPackagingTest)
|
packagingTest.dependsOn(javaPackagingTest)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This test is unmaintained and was created to run on Linux. We won't allow it to run on Windows
|
* This test is unmaintained and was created to run on Linux. We won't allow it to run on Windows
|
||||||
|
Loading…
x
Reference in New Issue
Block a user