wxWidgets/build/buildbot/config/testdrive-win.xml

89 lines
1.9 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!--
Name: testdrive-win.xml
Purpose: Buildbot configuration for the Windows Testdrive machines.
Author: Mike Wetherell
RCS-ID: $Id$
Copyright: (c) 2007 Mike Wetherell
Licence: wxWidgets licence
-->
<bot xmlns:xi="http://www.w3.org/2001/XInclude">
<!--
Notes:
The list of available machines is here:
http://www.testdrive.hp.com/current.shtml
This file covers the Windows hosts, for unix builds see testdrive.xml.
<sandbox> specifies the remote machine that will run the job, or it can
be 'debug' in which case the sandbox will just echo the commands. If
omitted defaults to the same value as the previous build.
-->
<xi:include href="include/testdrive-win.xml"/>
<!--
VC++ 8
-->
<build>
<name>VC++ 8 IA64 Trunk</name>
<sandbox>td197.testdrive.hp.com</sandbox>
<builddir>wd_msw_ia64</builddir>
<scheduler>monday_0600</scheduler>
<make>nmake -f makefile.vc</make>
<steps>
<checkout/>
<compile-all/>
</steps>
</build>
<build>
<name>VC++ 8 IA64 Stable</name>
<builddir>wd_msw_ia64_stable</builddir>
<scheduler/>
<make>nmake -f makefile.vc</make>
<steps>
<checkout branch="{$STABLE_BRANCH}"/>
<compile-all/>
</steps>
</build>
<!--
Cygwin
-->
<build>
<name>Cygwin wxBase Trunk</name>
<sandbox>td198.testdrive.hp.com</sandbox>
<builddir>wd_cyg_base</builddir>
<scheduler>monday_0600</scheduler>
<steps>
<checkout/>
<configure options="--disable-gui"/>
<compile-all/>
<run-tests/>
</steps>
</build>
<build>
<name>Cygwin wxBase Stable</name>
<builddir>wd_cyg_base_stable</builddir>
<scheduler/>
<steps>
<checkout branch="{$STABLE_BRANCH}"/>
<configure options="--disable-gui"/>
<compile-all/>
<run-tests/>
</steps>
</build>
</bot>