Repository: incubator-zeppelin Updated Branches: refs/heads/master f140c0955 -> fff175f92
ZEPPELIN-366 Create a single binary package with default build flags. This PR addresses https://issues.apache.org/jira/browse/ZEPPELIN-366 This patch creates single binary package instead of multiple binary package with different version of Spark / Hadoop combinations. Also it's removing redundant directory structure from it's tar archive. Author: Lee moon soo <[email protected]> Closes #373 from Leemoonsoo/ZEPPELIN-366 and squashes the following commits: 366bbf4 [Lee moon soo] Create a single binary package with default build flags. Remove redundant directory structure in binary package. Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/fff175f9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/fff175f9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/fff175f9 Branch: refs/heads/master Commit: fff175f92559afc58280eaeaa94c225e82830f90 Parents: f140c09 Author: Lee moon soo <[email protected]> Authored: Tue Oct 27 13:22:48 2015 +0100 Committer: Lee moon soo <[email protected]> Committed: Wed Oct 28 10:36:37 2015 +0100 ---------------------------------------------------------------------- dev/create_release.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/fff175f9/dev/create_release.sh ---------------------------------------------------------------------- diff --git a/dev/create_release.sh b/dev/create_release.sh index 1546f8b..833753c 100755 --- a/dev/create_release.sh +++ b/dev/create_release.sh @@ -104,8 +104,7 @@ function make_binary_release() { fi # re-create package with proper dir name - cd zeppelin-distribution/target - rm zeppelin-*.tar.gz + cd zeppelin-distribution/target/zeppelin-* mv zeppelin-* zeppelin-${RELEASE_NAME}-bin-${BIN_RELEASE_NAME} ${TAR} cvzf zeppelin-${RELEASE_NAME}-bin-${BIN_RELEASE_NAME}.tgz zeppelin-${RELEASE_NAME}-bin-${BIN_RELEASE_NAME} @@ -123,8 +122,7 @@ function make_binary_release() { rm -rf ${WORKING_DIR}/zeppelin-${RELEASE_NAME}-bin-${BIN_RELEASE_NAME} } -make_binary_release spark-1.4.0_hadoop-2.3 -Pyarn -Pspark-1.4 -Dspark.version=1.4.0 -Phadoop-2.3 -make_binary_release spark-1.3.1_hadoop-2.3 -Pyarn -Pspark-1.3 -Dspark.version=1.3.1 -Phadoop-2.3 +make_binary_release all -Pyarn # remove non release files and dirs rm -rf ${WORKING_DIR}/zeppelin
