You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jo...@apache.org on 2014/02/28 10:48:40 UTC

[43/50] git commit: [flex-falcon] [refs/heads/maven] - add create-md5 target for nightly builds

add create-md5 target for nightly builds


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/8966eda9
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/8966eda9
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/8966eda9

Branch: refs/heads/maven
Commit: 8966eda94ca616ae0a2f110cfa20f4a2f0f76cfe
Parents: 3b96c69
Author: Alex Harui <ah...@apache.org>
Authored: Thu Jan 16 15:34:00 2014 -0800
Committer: Alex Harui <ah...@apache.org>
Committed: Thu Jan 16 15:34:00 2014 -0800

----------------------------------------------------------------------
 build.xml | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/8966eda9/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index f76ea85..4c8cc25 100644
--- a/build.xml
+++ b/build.xml
@@ -520,5 +520,16 @@
         <delete dir="${basedir}/temp" failonerror="false" includeEmptyDirs="true"/>
     </target>
 
+    <target name="create-md5" >
+        <echo message="Generating MD5 hashes for release artifacts"/>
+        <checksum algorithm="md5" file="${basedir}/out/${binary.kit}.tar.gz" forceOverwrite="yes"/>
+        <checksum algorithm="md5" file="${basedir}/out/${binary.kit}.zip" forceOverwrite="yes"/>
+        <checksum algorithm="md5" file="${basedir}/out/${source.kit}.tar.gz" forceOverwrite="yes"/>
+        <checksum algorithm="md5" file="${basedir}/out/${source.kit}.zip" forceOverwrite="yes"/>
+        <checksum algorithm="md5" file="${basedir}/out/${binary.jx.kit}.tar.gz" forceOverwrite="yes"/>
+        <checksum algorithm="md5" file="${basedir}/out/${binary.jx.kit}.zip" forceOverwrite="yes"/>
+        <checksum algorithm="md5" file="${basedir}/out/${source.jx.kit}.tar.gz" forceOverwrite="yes"/>
+        <checksum algorithm="md5" file="${basedir}/out/${source.jx.kit}.zip" forceOverwrite="yes"/>
+    </target>
 
 </project>