Commit f8160fcb authored by Bill Lynch's avatar Bill Lynch Committed by bill

Implemented daily build support


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@122 b35dd754-fafc-0310-a699-88a17e54d16e
parent 52060223
......@@ -102,7 +102,6 @@
<include name="**/*.html" />
<include name="**/*.css" />
<include name="**/*.gif" />
<include name="**/*.jpg" /> <!-- TODO: convert these to gif files -->
</patternset>
<filterset id="docs.filters">
......@@ -128,6 +127,14 @@
<tstamp>
<format property="builddate" pattern="MM/dd/yyyy" />
</tstamp>
<tstamp>
<format property="dailybuild.tstamp" pattern="yyyy-MM-dd" locale="en"/>
</tstamp>
<echo>
${dailybuild.tstamp}
</echo>
<mkdir dir="${target.dir}" />
</target>
......@@ -444,6 +451,14 @@
</target>
<!-- dailybuild ============================================================================ -->
<target name="dailybuild" depends="init" description="Creates a daily build release">
<antcall target="release">
<param name="release.out.name" value="${dist.prefix}_${dailybuild.tstamp}" />
<param name="release.src.out.name" value="${dist.prefix}_src_${dailybuild.tstamp}" />
</antcall>
</target>
<!-- clean ================================================================================= -->
<target name="clean" description="Cleans up all build-generated output">
<delete dir="${target.dir}" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment