]> git.saurik.com Git - wxWidgets.git/blobdiff - build/buildbot/config/include/testdrive.xml
don't show the currently hidden frame if Iconize() is called (see #10426)
[wxWidgets.git] / build / buildbot / config / include / testdrive.xml
index e9f7c9f3c924e2a5f81def484ff7385c3d731d8b..eb5136988057319ef1bc0d98702b0665001cf3fc 100644 (file)
@@ -47,6 +47,7 @@
     <xsl:param name="branch" select="'trunk'"/>
     <xsl:variable name="nodes" select="exsl:node-set($content)"/>
     <testdrive-svn>
+        <profile/>
         <xsl:if test="not($nodes/svnurl)">
             <xsl:if test="not($nodes/baseURL)">
                 <baseURL><SVN_URL/></baseURL>
             </xsl:if>
         </xsl:if>
         <xsl:if test="not($nodes/command)">
-            <profile/>
             <post-checkout/>
         </xsl:if>
         <xsl:copy-of select="$content"/>
     </testdrive-svn>
 </xsl:template>
 
+<!--
+    fatch - fetch an source tarball/zip over http or ftp.
+
+    Usage:
+        <fetch branch="Daily_HEAD/wxX11.tar.gz"/>
+
+    Fetches the URL given by <baseURL>/$branch, where the current default
+    for <baseURL> is "http://biolpc22.york.ac.uk/pub".
+
+    The archive is then extracted by executing <profile/> then <unarchive/>
+    on the remote machine.
+-->
+<xsl:template name="fetch">
+    <xsl:param name="content"/>
+    <xsl:param name="branch">Daily_HEAD/wxWidgets.tar.gz</xsl:param>
+    <wget>
+        <profile/>
+        <defaults content="{$content}">
+            <baseURL><SNAPSHOT_URL/></baseURL>
+            <defaultBranch><xsl:value-of select="$branch"/></defaultBranch>
+            <unarchive/>
+        </defaults>
+        <xsl:copy-of select="$content"/>
+    </wget>
+</xsl:template>
+
 <!--
     steps - overrides <steps> to prepend <profile/> and <prologue/> and
             append <epilogue/> to the <command/> of each build step.
     <steps>
         <xsl:for-each select="exsl:node-set($content)/*">
             <xsl:choose>
-                <xsl:when test="contains(name(), 'svn')">
+                <xsl:when test="contains(name(), 'svn') or
+                                contains(name(), 'get')">
                     <xsl:copy-of select="."/>
                 </xsl:when>
                 <xsl:otherwise>