]> git.saurik.com Git - wxWidgets.git/blobdiff - build/buildbot/config/TBITCWXBUILDBOT.xml
Fix incorrect handling of ItemsAdded() in wxDataViewCtrl.
[wxWidgets.git] / build / buildbot / config / TBITCWXBUILDBOT.xml
index faf51a4b079f727b316dedf63e41eca2a4240961..1437c5e3dd4d56ab0ea8063951dfe21bc0b4fe26 100644 (file)
 <xi:include href="include/unix.xml"/>
 
 <build>
-    <name>Linux wxGTK trunk</name>
-    <builddir>tbitcwxbuildbot_gtk</builddir>
-    <!--scheduler>trunk_quick</scheduler-->
+    <name>MinGW x86 trunk</name>
+    <builddir>tbitcwxbuildbot_mingw_trunk</builddir>
+    <scheduler>trunk_quick</scheduler>
     <steps>
         <checkout/>
-        <configure/>
+        <configure options="--host=i586-mingw32msvc
+                            --with-cppunit-prefix=/usr/local/i586-mingw32msvc"/>
         <compile-all/>
-        <run-tests/>
     </steps>
 </build>
 
+<build>
+    <name>MinGW x86 stable</name>
+    <builddir>tbitcwxbuildbot_mingw_stable</builddir>
+    <scheduler>daily_0600</scheduler>
+    <steps>
+        <checkout branch="{$STABLE_BRANCH}"/>
+        <configure options="--host=i586-mingw32msvc
+                            --with-cppunit-prefix=/usr/local/i586-mingw32msvc"/>
+        <compile-all utils="false"/>
+    </steps>
+</build>
+
+<!--
+    Commented out 64-bit builds as no 64-bit compiler at the moment.
+
+    If you're re-enabling them take out the space between the hyphens of the
+    configure options below, e.g. take out the space from "- -host=".
+
+<build>
+    <name>MinGW x86_64 trunk</name>
+    <builddir>tbitcwxbuildbot_mingw64_trunk</builddir>
+    <scheduler>trunk_quick</scheduler>
+    <steps>
+        <checkout/>
+        <configure options="- -host=amd64-mingw32msvc
+                            - -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/>
+        <compile-all/>
+    </steps>
+</build>
+
+<build>
+    <name>MinGW x86_64 stable</name>
+    <builddir>tbitcwxbuildbot_mingw64_stable</builddir>
+    <scheduler>daily_0600</scheduler>
+    <steps>
+        <checkout branch="{$STABLE_BRANCH}"/>
+        <configure options="- -host=amd64-mingw32msvc
+                            - -with-cppunit-prefix=/usr/local/amd64-mingw32msvc"/>
+        <compile-all utils="false"/>
+    </steps>
+</build>
+
+-->
+
 </bot>