Repository: incubator-systemml Updated Branches: refs/heads/master 49499fbbb -> ee6bc8ce2
[SYSTEMML-1250] Binary artifact missing antlr-runtime and wink-json4j classes Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/ee6bc8ce Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/ee6bc8ce Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/ee6bc8ce Branch: refs/heads/master Commit: ee6bc8ce2223d7c31a0afe64751405e70907034f Parents: 49499fb Author: Arvind Surve <[email protected]> Authored: Wed Feb 22 16:09:23 2017 -0800 Committer: Arvind Surve <[email protected]> Committed: Mon Mar 27 10:17:06 2017 -0700 ---------------------------------------------------------------------- dev/release/release-build.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/ee6bc8ce/dev/release/release-build.sh ---------------------------------------------------------------------- diff --git a/dev/release/release-build.sh b/dev/release/release-build.sh index 447db17..091b641 100755 --- a/dev/release/release-build.sh +++ b/dev/release/release-build.sh @@ -249,6 +249,29 @@ if [[ "$RELEASE_PREPARE" == "true" ]]; then # Build and prepare the release $MVN $PUBLISH_PROFILES release:clean release:prepare $DRY_RUN -Darguments="-Dgpg.passphrase=\"$GPG_PASSPHRASE\" -DskipTests" -DreleaseVersion="$RELEASE_VERSION" -DdevelopmentVersion="$DEVELOPMENT_VERSION" -Dtag="$RELEASE_TAG" + + # exit at this point to run followiing steps manually. + echo "WARNING: Set followinig enviornment variables and run rest of the steps for 'Release Prepare' " + echo + echo "MVN=$MVN" + echo "PUBLISH_PROFILES=\"$PUBLISH_PROFILES\"" + echo "DRY_RUN=$DRY_RUN" + echo "GPG_PASSPHRASE=$GPG_PASSPHRASE" + echo "RELEASE_VERSION=$RELEASE_VERSION" + echo "RELEASE_RC=$RELEASE_RC" + echo "DEVELOPMENT_VERSION=$DEVELOPMENT_VERSION" + echo "RELEASE_TAG=$RELEASE_TAG" + echo "RELEASE_WORK_DIR=$RELEASE_WORK_DIR" + echo "RELEASE_STAGING_LOCATION=$RELEASE_STAGING_LOCATION" + echo "BASE_DIR=$BASE_DIR" + + exit 5 + + # Update dev/release/target/release/incubator-systemml/pom.xml with similar to following contents which is for 0.13.0 RC1 + # Update <version>0.13.0-incubating</version> + # Update <tag>v0.13.0-incubating-rc1</tag> + + cd $RELEASE_WORK_DIR/incubator-systemml ## Rerunning mvn with clean and package goals, as release:prepare changes ordeer for some dependencies like unpack and shade. $MVN $PUBLISH_PROFILES clean package $DRY_RUN -Darguments="-Dgpg.passphrase=\"$GPG_PASSPHRASE\" -DskipTests" -DreleaseVersion="$RELEASE_VERSION" -DdevelopmentVersion="$DEVELOPMENT_VERSION" -Dtag="$RELEASE_TAG"
