]>
Commit | Line | Data |
---|---|---|
17ffa9b9 MW |
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 | ||
2e452c45 MW |
28 | <!-- |
29 | VC++ 8 | |
30 | --> | |
31 | ||
17ffa9b9 MW |
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 | ||
2e452c45 MW |
45 | <build> |
46 | <name>VC++ 8 IA64 Stable</name> | |
47 | <builddir>wd_msw_ia64_stable</builddir> | |
48 | <scheduler/> | |
d91490a5 | 49 | <make>nmake -f makefile.vc</make> |
2e452c45 MW |
50 | |
51 | <steps> | |
52 | <checkout branch="{$STABLE_BRANCH}"/> | |
53 | <compile-all/> | |
54 | </steps> | |
55 | </build> | |
56 | ||
57 | <!-- | |
58 | Cygwin | |
59 | --> | |
60 | ||
17ffa9b9 MW |
61 | <build> |
62 | <name>Cygwin wxBase Trunk</name> | |
2e452c45 | 63 | <sandbox>td198.testdrive.hp.com</sandbox> |
17ffa9b9 | 64 | <builddir>wd_cyg_base</builddir> |
2e452c45 | 65 | <scheduler>monday_0600</scheduler> |
17ffa9b9 MW |
66 | |
67 | <steps> | |
68 | <checkout/> | |
69 | <configure options="--disable-gui"/> | |
70 | <compile-all/> | |
71 | <run-tests/> | |
72 | </steps> | |
73 | </build> | |
74 | ||
2e452c45 MW |
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 | ||
17ffa9b9 | 88 | </bot> |