]> git.saurik.com Git - wxWidgets.git/blame - build/buildbot/config/include/push.xml
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / build / buildbot / config / include / push.xml
CommitLineData
b0de11ed
MW
1<?xml version="1.0" encoding="utf-8"?>
2
3<!--
4 Name: include/push.xml
5 Purpose: Declarations for the push build slave
6 Author: Mike Wetherell
b0de11ed 7 Copyright: (c) 2007 Mike Wetherell
526954c5 8 Licence: wxWindows licence
b0de11ed
MW
9-->
10
11<bot xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
12 xmlns:xi="http://www.w3.org/2001/XInclude">
13
14<xi:include href="defs.xml"/>
15
16<!--
d5940c63 17 Usage: <show log="filename" [ name="title" ]/>
b0de11ed
MW
18
19 A build step displayed as 'title' in the waterfall display, the output
20 comes from 'filename.log' in the uploaded log tarball, and the exit code
21 comes from 'filename.err'.
22
23 If the name attibute is omitted, it defaults to the filename.
24-->
25<xsl:template name="show">
26 <xsl:param name="content"/>
27 <xsl:param name="log"/>
28 <xsl:param name="name" select="$log"/>
29 <shellcommand>
30 <defaults content="{$content}">
31 <name><xsl:value-of select="$name"/></name>
32 <description><xsl:value-of select="$name"/></description>
33 <descriptionDone><xsl:value-of select="$name"/></descriptionDone>
34 <command><xsl:value-of select="$log"/></command>
35 </defaults>
36 <xsl:copy-of select="$content"/>
37 </shellcommand>
38</xsl:template>
39
40</bot>