Vagrant tests should use plugin zips
Fixes failing packaging tests: https://elasticsearch-ci.elastic.co/job/elastic+elasticsearch+master+packaging-tests/1049/console
This commit is contained in:
parent
83a137b25c
commit
4d89aa97e9
|
@ -101,7 +101,7 @@ dependencies {
|
||||||
// Collect all the plugins
|
// Collect all the plugins
|
||||||
for (Project subproj : project.rootProject.subprojects) {
|
for (Project subproj : project.rootProject.subprojects) {
|
||||||
if (subproj.path.startsWith(':plugins:')) {
|
if (subproj.path.startsWith(':plugins:')) {
|
||||||
test project("${subproj.path}")
|
test project(path: "${subproj.path}", configuration: 'zip')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue