]> git.saurik.com Git - wxWidgets.git/blob - build/buildbot/config/TBITCWXBUILDBOT.xml
Disable the Mingw x64 builds as there's no compiler.
[wxWidgets.git] / build / buildbot / config / TBITCWXBUILDBOT.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4 Name: TBITCWXBUILDBOT.xml
5 RCS-ID: $Id$
6 -->
7
8 <bot xmlns:xi="http://www.w3.org/2001/XInclude">
9
10 <xi:include href="include/unix.xml"/>
11
12 <build>
13 <name>MinGW x86 trunk</name>
14 <builddir>tbitcwxbuildbot_mingw_trunk</builddir>
15 <scheduler>trunk_quick</scheduler>
16 <steps>
17 <checkout/>
18 <configure options="--host=i586-mingw32msvc
19 --with-cppunit-prefix=/usr/local/i586-mingw32msvc"/>
20 <compile-all/>
21 </steps>
22 </build>
23
24 <build>
25 <name>MinGW x86 stable</name>
26 <builddir>tbitcwxbuildbot_mingw_stable</builddir>
27 <scheduler>daily_0600</scheduler>
28 <steps>
29 <checkout branch="{$STABLE_BRANCH}"/>
30 <configure options="--host=i586-mingw32msvc
31 --with-cppunit-prefix=/usr/local/i586-mingw32msvc"/>
32 <compile-all utils="false"/>
33 </steps>
34 </build>
35
36 <!--
37 Commented out 64-bit builds as no 64-bit compiler at the moment.
38
39 If you're re-enabling them take out the space between the hyphens of the
40 configure options below, e.g. take out the space from "- -host=".
41
42 <build>
43 <name>MinGW x86_64 trunk</name>
44 <builddir>tbitcwxbuildbot_mingw64_trunk</builddir>
45 <scheduler>trunk_quick</scheduler>
46 <steps>
47 <checkout/>
48 <configure options="- -host=amd64-mingw32msvc
49 - -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/>
50 <compile-all/>
51 </steps>
52 </build>
53
54 <build>
55 <name>MinGW x86_64 stable</name>
56 <builddir>tbitcwxbuildbot_mingw64_stable</builddir>
57 <scheduler>daily_0600</scheduler>
58 <steps>
59 <checkout branch="{$STABLE_BRANCH}"/>
60 <configure options="- -host=amd64-mingw32msvc
61 - -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/>
62 <compile-all utils="false"/>
63 </steps>
64 </build>
65
66 -->
67
68 </bot>