summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2011-05-31 19:29:09 +0200
committerSven Gothel <[email protected]>2011-05-31 19:29:09 +0200
commitc960250adbc656e5e79914a783185ca5b03ac73a (patch)
treecfa98d37b70e979348bc1277bd31eb405ea3a609
parent726e7ff27f80ff15874e8785141269c7c9f2dbb9 (diff)
create source zip archives
-rwxr-xr-xmake/build.xml31
1 files changed, 27 insertions, 4 deletions
diff --git a/make/build.xml b/make/build.xml
index 41d5586..da85f9e 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -50,11 +50,23 @@
<property name="gluegen.root" value="${project.root}/../gluegen" />
<property name="gluegen.build" value="${gluegen.root}/${rootrel.build}" />
- <property file="${build}/artifact.properties"/>
<property name="joal.build.number" value="manual-build"/>
<property name="joal.build.id" value="${version.timestamp}"/>
- <property name="joal.build.branch" value="master"/>
- <property name="joal.build.commit" value="manual"/>
+ <mkdir dir="${build}" />
+ <exec dir="." executable="git" logError="true" failonerror="false" failifexecutionfails="false"
+ output="${build}/localbranch.raw">
+ <arg line="branch --no-color"/>
+ </exec>
+ <exec dir="." executable="sed" logError="true" failonerror="false" failifexecutionfails="false"
+ outputproperty="joal.build.branch">
+ <arg line="-e '/^[^*]/d' -e 's/* \(.*\)/\1/' ${build}/localbranch.raw"/>
+ </exec>
+ <property name="joal.build.branch" value="manual"/> <!-- fallback -->
+ <exec dir="${project.root}" executable="git" logError="true" failonerror="false" failifexecutionfails="false"
+ outputproperty="joal.build.commit">
+ <arg line="rev-parse HEAD"/>
+ </exec>
+ <property name="joal.build.commit" value="manual"/> <!-- fallback -->
<!-- Pull in GlueGen cpptasks build file -->
<import file="${gluegen.root}/make/gluegen-cpptasks.xml" />
@@ -492,8 +504,18 @@
</javadoc>
</target>
+ <target name="developer-src-zip" depends="init">
+ <!--delete includeEmptyDirs="true" quiet="true" failonerror="false">
+ <fileset dir="${build}" includes="joal-java-src.zip" />
+ </delete-->
+ <zip destfile="${build}/joal-java-src.zip">
+ <fileset dir="${src.java}"/>
+ <fileset dir="${build}/gensrc/classes"/>
+ </zip>
+ </target>
+
<!-- Build binary zip archives for developers -->
- <target name="developer-zip-archive" depends="init" if="build.archiveon">
+ <target name="developer-zip-archive" depends="init,developer-src-zip" if="build.archiveon">
<!-- Clean up and create temporary directory -->
<delete includeEmptyDirs="true" quiet="true" dir="${archive}" failonerror="false" />
<mkdir dir="${archive}" />
@@ -516,6 +538,7 @@
</copy>
<copy file="../README.txt" todir="${archive}"/>
<copy file="../LICENSE.txt" todir="${archive}"/>
+ <copy todir="${archive}" file="${build}/joal-java-src.zip"/>
<archive.7z destfile="${build}/${archive.name}.7z"
basedir="${build}"
includes="${archive.name}/**" />