]> git.saurik.com Git - wxWidgets.git/commitdiff
Add support for the Windows Testdrive machines and other improvements.
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Wed, 12 Dec 2007 21:51:44 +0000 (21:51 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Wed, 12 Dec 2007 21:51:44 +0000 (21:51 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@50674 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/buildbot/config/testdrive-win.xml [new file with mode: 0644]

diff --git a/build/buildbot/config/testdrive-win.xml b/build/buildbot/config/testdrive-win.xml
new file mode 100644 (file)
index 0000000..260b38f
--- /dev/null
@@ -0,0 +1,53 @@
+<?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"/>
+
+<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>Cygwin wxBase Trunk</name>
+    <builddir>wd_cyg_base</builddir>
+
+    <steps>
+        <checkout/>
+        <configure options="--disable-gui"/>
+        <compile-all/>
+        <run-tests/>
+    </steps>
+</build>
+
+</bot>