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