]> git.saurik.com Git - wxWidgets.git/blob - build/buildbot/config/testdrive-win.xml
adding scheduler
[wxWidgets.git] / build / buildbot / config / testdrive-win.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4 Name: testdrive-win.xml
5 Purpose: Buildbot configuration for the Windows Testdrive machines.
6 Author: Mike Wetherell
7 RCS-ID: $Id$
8 Copyright: (c) 2007 Mike Wetherell
9 Licence: wxWidgets licence
10 -->
11
12 <bot xmlns:xi="http://www.w3.org/2001/XInclude">
13
14 <!--
15 Notes:
16
17 The list of available machines is here:
18 http://www.testdrive.hp.com/current.shtml
19 This file covers the Windows hosts, for unix builds see testdrive.xml.
20
21 <sandbox> specifies the remote machine that will run the job, or it can
22 be 'debug' in which case the sandbox will just echo the commands. If
23 omitted defaults to the same value as the previous build.
24 -->
25
26 <xi:include href="include/testdrive-win.xml"/>
27
28 <!--
29 VC++ 8
30 -->
31
32 <build>
33 <name>VC++ 8 IA64 Trunk</name>
34 <sandbox>td197.testdrive.hp.com</sandbox>
35 <builddir>wd_msw_ia64</builddir>
36 <scheduler>monday_0600</scheduler>
37 <make>nmake -f makefile.vc</make>
38
39 <steps>
40 <checkout/>
41 <compile-all/>
42 </steps>
43 </build>
44
45 <build>
46 <name>VC++ 8 IA64 Stable</name>
47 <builddir>wd_msw_ia64_stable</builddir>
48 <scheduler/>
49 <make>nmake -f makefile.vc</make>
50
51 <steps>
52 <checkout branch="{$STABLE_BRANCH}"/>
53 <compile-all/>
54 </steps>
55 </build>
56
57 <!--
58 Cygwin
59 -->
60
61 <build>
62 <name>Cygwin wxBase Trunk</name>
63 <sandbox>td198.testdrive.hp.com</sandbox>
64 <builddir>wd_cyg_base</builddir>
65 <scheduler>monday_0600</scheduler>
66
67 <steps>
68 <checkout/>
69 <configure options="--disable-gui"/>
70 <compile-all/>
71 <run-tests/>
72 </steps>
73 </build>
74
75 <build>
76 <name>Cygwin wxBase Stable</name>
77 <builddir>wd_cyg_base_stable</builddir>
78 <scheduler/>
79
80 <steps>
81 <checkout branch="{$STABLE_BRANCH}"/>
82 <configure options="--disable-gui"/>
83 <compile-all/>
84 <run-tests/>
85 </steps>
86 </build>
87
88 </bot>