OpenSearch/qa/os/windows-2016/build.gradle

14 lines
356 B
Groovy

import org.elasticsearch.gradle.test.GradleDistroTestTask
String boxId = project.properties.get('vagrant.windows-2016.id')
if (boxId != null) {
vagrant {
hostEnv 'VAGRANT_WINDOWS_2016_BOX', boxId
}
} else {
// box id was not supplied, so disable the distro tests
tasks.withType(GradleDistroTestTask).configureEach {
onlyIf { false }
}
}