You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@systemml.apache.org by lr...@apache.org on 2016/01/29 02:23:36 UTC

[1/3] incubator-systemml git commit: Add release script strawman

Repository: incubator-systemml
Updated Branches:
  refs/heads/branch-0.9 321f1300a -> bc6348543


Add release script strawman


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/3a24a05a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/3a24a05a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/3a24a05a

Branch: refs/heads/branch-0.9
Commit: 3a24a05a8ea93b97139e4a1f5e59164de4c68f9d
Parents: 321f130
Author: Luciano Resende <lr...@apache.org>
Authored: Thu Jan 28 14:07:34 2016 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Thu Jan 28 17:04:22 2016 -0800

----------------------------------------------------------------------
 dev/release/release-build.sh | 47 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 47 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/3a24a05a/dev/release/release-build.sh
----------------------------------------------------------------------
diff --git a/dev/release/release-build.sh b/dev/release/release-build.sh
new file mode 100644
index 0000000..390ed6c
--- /dev/null
+++ b/dev/release/release-build.sh
@@ -0,0 +1,47 @@
+#!/usr/bin/env bash
+
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+
+# Display commands as they are executed
+set -x
+
+# BUILD and install in the current directory
+ROOT=`pwd`
+BUILD=`pwd`/target
+RELEASE=`pwd`/target/RELEASE
+
+#For testing
+#mvn clean verify gpg:sign install:install deploy:deploy -DaltDeploymentRepository=id::default::file:$RELEASE -Pdistribution,rat  -Dgpg.skip -DskipTests -Darguments="-DskipTests"
+
+#For publishing
+#mvn clean verify gpg:sign install:install deploy:deploy -Dgpg.passphrase=tuscany -DaltDeploymentRepository=apache.staging::default::https://repository.apache.org/service/local/staging/deploy/maven2 -Pdistribution,rat  -Dgpg.skip -DskipTests -Darguments="-DskipTests"
+mvn clean verify gpg:sign install:install deploy:deploy -Dgpg.passphrase=tuscany -Pdistribution,rat -DskipTests -Darguments="-DskipTests"
+
+mkdir $RELEASE/
+cp $BUILD/systemml-* $RELEASE/
+cd $RELEASE
+
+# sign
+#for i in *.zip *.gz; do gpg --output $i.asc --detach-sig --armor $i; done
+for i in *.zip *.gz; do openssl md5 -hex $i | sed 's/MD5(\([^)]*\))= \([0-9a-f]*\)/\2 *\1/' > $i.md5; done
+
+cp $BUILD/rat.txt $RELEASE/
+
+# copy to apache for review
+# scp $RELEASE/* lresende@people.apache.org:/home/lresende/public_html/systemml/0.9.0
\ No newline at end of file


[2/3] incubator-systemml git commit: [SYSTEMML-463] Prepare release: SystemML 0.9.0-incubating-rc3

Posted by lr...@apache.org.
[SYSTEMML-463] Prepare release: SystemML 0.9.0-incubating-rc3


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/49528085
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/49528085
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/49528085

Branch: refs/heads/branch-0.9
Commit: 49528085a9b2ea0babade040db821c8158a57ab5
Parents: 3a24a05
Author: Luciano Resende <lr...@apache.org>
Authored: Thu Jan 28 17:21:33 2016 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Thu Jan 28 17:21:33 2016 -0800

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/49528085/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 7a9aad1..6d271ad 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
 		<version>17</version>
 	</parent>
 	<groupId>org.apache.systemml</groupId>
-	<version>0.9.0-incubating-SNAPSHOT</version>
+	<version>0.9.0-incubating</version>
 	<artifactId>systemml</artifactId>
 	<packaging>jar</packaging>
 	<name>SystemML</name>


[3/3] incubator-systemml git commit: [SYSTEMML-463] Revert pom to SNAPSHOT after release prepare

Posted by lr...@apache.org.
[SYSTEMML-463] Revert pom to SNAPSHOT after release prepare


Project: http://git-wip-us.apache.org/repos/asf/incubator-systemml/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-systemml/commit/bc634854
Tree: http://git-wip-us.apache.org/repos/asf/incubator-systemml/tree/bc634854
Diff: http://git-wip-us.apache.org/repos/asf/incubator-systemml/diff/bc634854

Branch: refs/heads/branch-0.9
Commit: bc63485432d44632a33b6d424951be504c09a2ed
Parents: 4952808
Author: Luciano Resende <lr...@apache.org>
Authored: Thu Jan 28 17:22:39 2016 -0800
Committer: Luciano Resende <lr...@apache.org>
Committed: Thu Jan 28 17:22:39 2016 -0800

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/bc634854/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 6d271ad..7a9aad1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
 		<version>17</version>
 	</parent>
 	<groupId>org.apache.systemml</groupId>
-	<version>0.9.0-incubating</version>
+	<version>0.9.0-incubating-SNAPSHOT</version>
 	<artifactId>systemml</artifactId>
 	<packaging>jar</packaging>
 	<name>SystemML</name>