csleobuild.xml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Name: csleobuild.xml
  4. Purpose:
  5. Author:
  6. Copyright:
  7. Licence:
  8. -->
  9. <bot xmlns:xi="http://www.w3.org/2001/XInclude">
  10. <xi:include href="include/csleobuild.xml"/>
  11. <scheduler>
  12. <name>branch_2_9_0</name>
  13. <branch>branches/WX_2_9_0_BRANCH</branch>
  14. <treeStableTimer>900</treeStableTimer>
  15. <fileNotImportant>docs/* interface/*</fileNotImportant>
  16. </scheduler>
  17. <build>
  18. <name>OSX 10.5 Intel wxOSX Carbon trunk</name>
  19. <builddir>csleo</builddir>
  20. <scheduler>trunk_quick</scheduler>
  21. <steps>
  22. <checkout/>
  23. <configure/>
  24. <compile-all/>
  25. <run-tests/>
  26. </steps>
  27. </build>
  28. <build>
  29. <name>OSX 10.5 Intel wxOSX Cocoa trunk</name>
  30. <builddir>csleo_cocoa</builddir>
  31. <scheduler>trunk_quick</scheduler>
  32. <steps>
  33. <checkout/>
  34. <configure options="--with-osx_cocoa"/>
  35. <compile-all/>
  36. <run-tests/>
  37. </steps>
  38. </build>
  39. <build>
  40. <name>OSX 10.5 Intel wxMac Stable</name>
  41. <builddir>csleo_stable</builddir>
  42. <scheduler>stable_quick</scheduler>
  43. <steps>
  44. <checkout branch="{$STABLE_BRANCH}"/>
  45. <configure/>
  46. <compile-all/>
  47. <run-tests/>
  48. </steps>
  49. </build>
  50. </bot>