Skip to content

Commit 2d5eea6

Browse files
authored
Skip building of BWC distributions when building release artifacts (#79180) (#79287)
1 parent 9f99405 commit 2d5eea6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,11 @@ tasks.register("buildReleaseArtifacts").configure {
399399
group = 'build'
400400
description = 'Builds all artifacts required for release manager'
401401

402-
dependsOn allprojects.findAll { it.path.startsWith(':distribution:docker') == false && it.path.startsWith(':ml-cpp') == false }
402+
dependsOn allprojects.findAll {
403+
it.path.startsWith(':distribution:docker') == false
404+
&& it.path.startsWith(':ml-cpp') == false
405+
&& it.path.startsWith(':distribution:bwc') == false
406+
}
403407
.collect { GradleUtils.findByName(it.tasks, 'assemble') }
404408
.findAll { it != null }
405409
}

0 commit comments

Comments
 (0)