]> git.saurik.com Git - wxWidgets.git/blob - build/buildbot/config/include/push.xml
Define _CRT_NONSTDC_NO_WARNINGS for zlib compilation with MSVC.
[wxWidgets.git] / build / buildbot / config / include / push.xml
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
7 Copyright: (c) 2007 Mike Wetherell
8 Licence: wxWindows licence
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 <!--
17 Usage: <show log="filename" [ name="title" ]/>
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>