TBITCWXBUILDBOT.xml 1.8 KB

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