Author: nickboldt
Date: 2011-06-15 02:07:28 -0400 (Wed, 15 Jun 2011)
New Revision: 32110
Modified:
trunk/build/results/build.xml
Log:
split aggregate results builder from single results builder; make single the default
(JBIDE-7444)
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2011-06-15 05:25:39 UTC (rev 32109)
+++ trunk/build/results/build.xml 2011-06-15 06:07:28 UTC (rev 32110)
@@ -1,4 +1,4 @@
-<project default="buildResults.aggregate">
+<project default="buildResults.single">
<!-- should be set by script or in Hudson -->
<property name="ZIPSUFFIX" value="SNAPSHOT" />
@@ -101,10 +101,22 @@
<!-- NEW STUFF HERE -->
+ <target name="buildResults.single" depends="init"
description="generate buildResults.html from build properties">
+ <ant target="collect.zips"
antfile="../aggregate/site/build.xml">
+ <property name="inputRepos" value="2" />
+ <property name="inputRepo1"
value="file://${input.dir}/all/repo/" />
+ <property name="inputRepo2"
value="http://download.jboss.org/jbosstools/builds/staging/${JOB_NAM...
/>
+ </ant>
+ <ant target="collect.metadata"
antfile="../aggregate/site/build.xml">
+ </ant>
+ <antcall target="buildResults" />
+ </target>
+
<target name="buildResults.aggregate" depends="init"
description="generate buildResults.html from build properties">
<ant target="collect.zips"
antfile="../aggregate/site/build.xml">
- <property name="inputRepos" value="1" />
- <property name="inputRepo1"
value="http://download.jboss.org/jbosstools/builds/staging/_composit...
/>
+ <property name="inputRepos" value="2" />
+ <property name="inputRepo1"
value="file://${input.dir}/all/repo/" />
+ <property name="inputRepo2"
value="http://download.jboss.org/jbosstools/builds/staging/_composit...
/>
</ant>
<ant target="collect.metadata"
antfile="../aggregate/site/build.xml">
</ant>