Skip building of BWC distributions when building release artifacts (#79180)
This commit is contained in:
parent
cc4a7a9b8e
commit
d380148355
|
@ -422,7 +422,11 @@ tasks.register("buildReleaseArtifacts").configure {
|
|||
group = 'build'
|
||||
description = 'Builds all artifacts required for release manager'
|
||||
|
||||
dependsOn allprojects.findAll { it.path.startsWith(':distribution:docker') == false && it.path.startsWith(':ml-cpp') == false }
|
||||
dependsOn allprojects.findAll {
|
||||
it.path.startsWith(':distribution:docker') == false
|
||||
&& it.path.startsWith(':ml-cpp') == false
|
||||
&& it.path.startsWith(':distribution:bwc') == false
|
||||
}
|
||||
.collect { GradleUtils.findByName(it.tasks, 'assemble') }
|
||||
.findAll { it != null }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue