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