common.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Name: common.xml
  4. Purpose: Schedulers and locks common to all slaves.
  5. Author: Mike Wetherell
  6. Copyright: (c) 2007 Mike Wetherell
  7. Licence: wxWindows licence
  8. -->
  9. <bot xmlns:xi="http://www.w3.org/2001/XInclude">
  10. <xi:include href="include/defs.xml"/>
  11. <!--
  12. Quick schedulers. Builds using these are triggered after each change to
  13. the sources on the given branch.
  14. name: unique
  15. branch: branch to watch
  16. treeStableTimer: wait until the tree has stopped changing for the
  17. given number of seconds before firing
  18. fileNotImportant: files matching these patterns do not trigger a build
  19. -->
  20. <scheduler>
  21. <name>trunk_quick</name>
  22. <branch>trunk</branch>
  23. <treeStableTimer>900</treeStableTimer>
  24. <fileNotImportant>docs/* interface/*</fileNotImportant>
  25. </scheduler>
  26. <scheduler>
  27. <name>release_quick</name>
  28. <branch><RELEASE_BRANCH/></branch>
  29. <treeStableTimer>900</treeStableTimer>
  30. <fileNotImportant>docs/* interface/*</fileNotImportant>
  31. </scheduler>
  32. <scheduler>
  33. <name>stable_quick</name>
  34. <branch><STABLE_BRANCH/></branch>
  35. <treeStableTimer>900</treeStableTimer>
  36. <fileNotImportant>docs/*</fileNotImportant>
  37. </scheduler>
  38. <!--
  39. Schedulers that fire once a week.
  40. A build can use one of these to be triggered once a week, or more than
  41. one if it should run several times a week on particular days.
  42. -->
  43. <nightly-schedulers name="sunday"/>
  44. <nightly-schedulers name="monday"/>
  45. <nightly-schedulers name="tuesday"/>
  46. <nightly-schedulers name="wednesday"/>
  47. <nightly-schedulers name="thursday"/>
  48. <nightly-schedulers name="friday"/>
  49. <nightly-schedulers name="saturday"/>
  50. <!--
  51. Schedulers for daily builds.
  52. -->
  53. <nightly-schedulers name="daily"/>
  54. <!--
  55. A general purpose slave lock and ones for the trunk and stable branches.
  56. -->
  57. <slavelock>
  58. <name>slave</name>
  59. </slavelock>
  60. <slavelock>
  61. <name>trunk</name>
  62. </slavelock>
  63. <slavelock>
  64. <name><STABLE_BRANCH/></name>
  65. </slavelock>
  66. <slavelock>
  67. <name><RELEASE_BRANCH/></name>
  68. </slavelock>
  69. <!--
  70. Map SVN user ids to email addresses.
  71. The email address in wx-devs.xml can be overridden by adding a line like
  72. this after the xi:include:
  73. <email id="JMS">jaakko.salli -at- dnainternet.net</email>
  74. or disabled using an empty tag:
  75. <email id="JMS"/>
  76. -->
  77. <emaillookup name="wx-devs">
  78. <xi:include href="include/wx-devs.xml"/>
  79. <!-- Overrides... -->
  80. </emaillookup>
  81. <!--
  82. Notify people on the blame list when a build goes from good to bad.
  83. -->
  84. <mailnotifier>
  85. <mode>problem</mode>
  86. <lookup>wx-devs</lookup>
  87. </mailnotifier>
  88. <!--
  89. Log every build to a mailing list.
  90. -->
  91. <mailnotifier>
  92. <extraRecipient>wx-buildbot -at- googlegroups.com</extraRecipient>
  93. </mailnotifier>
  94. <!--
  95. Track SVN changes using the wx-cvs mailing list.
  96. The <prefix> is subtracted from the paths in the 'Modified Files:'
  97. section, the remainder is then assumed to give the branch and filename.
  98. -->
  99. <svnmaildirsource>
  100. <prefix>wxWidgets</prefix>
  101. </svnmaildirsource>
  102. </bot>