Skip to content

Commit

Permalink
build: "ant release" uploads deb
Browse files Browse the repository at this point in the history
git-svn-id: http://mireka.googlecode.com/svn/trunk@183 741d60a8-641f-389e-c7ec-093451e00b49
  • Loading branch information
hontvari committed Mar 25, 2013
1 parent 37a5860 commit 47390bf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@

<deb todir="build/dist/ubuntu"
package="${name}"
debFilenameProperty="debFilename"
section="mail"
architecture="all"
depends="adduser, authbind, java7-runtime-headless | openjdk-7-jre-headless, upstart-job"
Expand Down Expand Up @@ -376,7 +377,7 @@
target: release
================================= -->
<target name="release"
depends="clean, dist, test"
depends="clean, dist, deb, test"
description="Uploads release archives to Google Code">
<gcupload username="${gc.username}"
password="${gc.password}"
Expand All @@ -392,6 +393,14 @@
targetfilename="${dist.name}.zip"
summary="Mireka ${build.version}"
labels="Featured, Type-Archive, OpSys-All" />
<basename file="${debFilename}" property="debFileBasename"/>
<gcupload username="${gc.username}"
password="${gc.password}"
projectname="mireka"
filename="${debFilename}"
targetfilename="${debFileBasename}"
summary="Mireka ${build.version} deb package for Ubuntu"
labels="Type-Package, OpSys-Ubuntu" />
</target>

<target name="clean" description="Cleans all previous build artifacts">
Expand Down

0 comments on commit 47390bf

Please sign in to comment.