adding buildbot for 2.9.0
[wxWidgets.git] / build / buildbot / config / csleobuild.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4 Name: csleobuild.xml
5 Purpose:
6 Author:
7 RCS-ID: $Id$
8 Copyright:
9 Licence:
10 -->
11
12 <bot xmlns:xi="http://www.w3.org/2001/XInclude">
13
14 <xi:include href="include/csleobuild.xml"/>
15
16 <scheduler>
17 <name>branch_2_9_0</name>
18 <branch>branches/WX_2_9_0_BRANCH</branch>
19 <treeStableTimer>900</treeStableTimer>
20 <fileNotImportant>docs/* interface/*</fileNotImportant>
21 </scheduler>
22
23 <build>
24 <name>OSX 10.5 Intel wxOSX Carbon trunk</name>
25 <builddir>csleo</builddir>
26 <scheduler>trunk_quick</scheduler>
27
28 <steps>
29 <checkout/>
30 <configure/>
31 <compile-all/>
32 <run-tests/>
33 </steps>
34 </build>
35 <build>
36 <name>OSX 10.5 Intel wxOSX Cocoa trunk</name>
37 <builddir>csleo_cocoa</builddir>
38 <scheduler>trunk_quick</scheduler>
39
40 <steps>
41 <checkout/>
42 <configure options="--with-osx_cocoa"/>
43 <compile-all/>
44 <run-tests/>
45 </steps>
46 </build>
47 <build>
48 <name>OSX 10.5 Intel wxMac Stable</name>
49 <builddir>csleo_stable</builddir>
50 <scheduler>stable_quick</scheduler>
51
52 <steps>
53 <checkout branch="{$STABLE_BRANCH}"/>
54 <configure/>
55 <compile-all/>
56 <run-tests/>
57 </steps>
58 </build>
59
60 <build>
61 <name>OSX 10.5 Intel wxOSX Carbon 2.9.0</name>
62 <builddir>csleo_pre</builddir>
63 <scheduler>branch_2_9_0</scheduler>
64 <steps>
65 <checkout branch="branches/WX_2_9_0_BRANCH"/>
66 <configure/>
67 <compile-all/>
68 <run-tests/>
69 </steps>
70 </build>
71 <build>
72 <name>OSX 10.5 Intel wxOSX Cocoa 2.9.0</name>
73 <builddir>csleo_cocoa_pre</builddir>
74 <scheduler>branch_2_9_0</scheduler>
75 <steps>
76 <checkout branch="branches/WX_2_9_0_BRANCH"/>
77 <configure options="--with-osx_cocoa"/>
78 <compile-all/>
79 <run-tests/>
80 </steps>
81 </build>
82
83 </bot>