Skip to content

Commit edea1ef

Browse files
committed
SPARK-2884: Create binary builds in parallel with release script.
Conflicts: dev/create-release/create-release.sh
1 parent 6c6409e commit edea1ef

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

dev/create-release/create-release.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,10 @@ make_binary_release() {
111111
spark-$RELEASE_VERSION-bin-$NAME.tgz.sha
112112
}
113113

114-
make_binary_release "hadoop1" "--with-hive --hadoop 1.0.4"
115-
make_binary_release "cdh4" "--with-hive --hadoop 2.0.0-mr1-cdh4.2.0"
116-
make_binary_release "hadoop2" "--with-hive --with-yarn --hadoop 2.2.0"
114+
make_binary_release "hadoop1" "--with-hive --hadoop 1.0.4" &
115+
make_binary_release "cdh4" "--with-hive --hadoop 2.0.0-mr1-cdh4.2.0" &
116+
make_binary_release "hadoop2" "--with-hive --with-yarn --hadoop 2.2.0" &
117+
wait
117118

118119
# Copy data
119120
echo "Copying release tarballs"

0 commit comments

Comments
 (0)