You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@river.apache.org by si...@apache.org on 2010/11/28 22:36:28 UTC

svn commit: r1039955 - /incubator/river/jtsk/trunk/build.xml

Author: sijskes
Date: Sun Nov 28 21:36:28 2010
New Revision: 1039955

URL: http://svn.apache.org/viewvc?rev=1039955&view=rev
Log:
added new matrix target

Modified:
    incubator/river/jtsk/trunk/build.xml

Modified: incubator/river/jtsk/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/river/jtsk/trunk/build.xml?rev=1039955&r1=1039954&r2=1039955&view=diff
==============================================================================
--- incubator/river/jtsk/trunk/build.xml (original)
+++ incubator/river/jtsk/trunk/build.xml Sun Nov 28 21:36:28 2010
@@ -64,7 +64,10 @@
     </target>
 
     <target name="hudson-qa-exec" description="execute QA test" >
-        <get src="https://hudson.apache.org/hudson/pview/job/River-QA-runtime/lastSuccessfulBuild/artifact/jtsk/trunk/harness-runtime.jar" />
+        <property name="harness-runtime-src" value="https://hudson.apache.org/hudson/pview/job/River-QA-runtime/lastSuccessfulBuild/artifact/jtsk/trunk/harness-runtime.jar" />
+        <property name="harness-runtime-dst" value="harness-runtime.jar" />
+        <get src="${harness-runtime-src}" dest="${harness-runtime-dst}" />
+        <unzip src="${harness-runtime-dst}" dest="." />
         <ant dir="qa" target="run-categories" inheritall="false">
             <property name="run.categories" value="${category}" />
         </ant>