]>
Commit | Line | Data |
---|---|---|
1441bb60 MW |
1 | <?xml version="1.0" encoding="utf-8"?> |
2 | ||
3 | <!-- | |
97873d0c | 4 | Name: TBITCWXBUILDBOT.xml |
1441bb60 MW |
5 | --> |
6 | ||
7 | <bot xmlns:xi="http://www.w3.org/2001/XInclude"> | |
8 | ||
9 | <xi:include href="include/unix.xml"/> | |
10 | ||
11 | <build> | |
695ad1e6 MW |
12 | <name>MinGW x86 trunk</name> |
13 | <builddir>tbitcwxbuildbot_mingw_trunk</builddir> | |
d1662129 | 14 | <scheduler>trunk_quick</scheduler> |
695ad1e6 MW |
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> | |
d1662129 | 26 | <scheduler>daily_0600</scheduler> |
695ad1e6 MW |
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 | ||
5f8bf0ee MW |
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 | ||
695ad1e6 MW |
41 | <build> |
42 | <name>MinGW x86_64 trunk</name> | |
43 | <builddir>tbitcwxbuildbot_mingw64_trunk</builddir> | |
5f8bf0ee | 44 | <scheduler>trunk_quick</scheduler> |
1441bb60 MW |
45 | <steps> |
46 | <checkout/> | |
5f8bf0ee MW |
47 | <configure options="- -host=amd64-mingw32msvc |
48 | - -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/> | |
1441bb60 | 49 | <compile-all/> |
695ad1e6 MW |
50 | </steps> |
51 | </build> | |
52 | ||
53 | <build> | |
54 | <name>MinGW x86_64 stable</name> | |
55 | <builddir>tbitcwxbuildbot_mingw64_stable</builddir> | |
5f8bf0ee | 56 | <scheduler>daily_0600</scheduler> |
695ad1e6 MW |
57 | <steps> |
58 | <checkout branch="{$STABLE_BRANCH}"/> | |
5f8bf0ee MW |
59 | <configure options="- -host=amd64-mingw32msvc |
60 | - -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/> | |
695ad1e6 | 61 | <compile-all utils="false"/> |
1441bb60 MW |
62 | </steps> |
63 | </build> | |
64 | ||
5f8bf0ee MW |
65 | --> |
66 | ||
1441bb60 | 67 | </bot> |