]> git.evergreen-ils.org Git - OpenSRF.git/blob - examples/buildbot.cfg
Syntax, baby, syntax (for the buildbot)
[OpenSRF.git] / examples / buildbot.cfg
1 # -*- python -*-
2 # vim: set syntax=python:et:ts=4:sw=4:
3
4 # This is a sample buildmaster config file. It must be installed as
5 # 'master.cfg' in your buildmaster's base directory.
6
7 # This is the dictionary that the buildmaster pays attention to. We also use
8 # a shorter alias to save typing.
9 c = BuildmasterConfig = {}
10
11 ####### BUILDSLAVES
12
13 # The 'slaves' list defines the set of recognized buildslaves. Each element is
14 # a BuildSlave object, specifying a username and password.  The same username and
15 # password must be configured on the slave.
16 from buildbot.buildslave import BuildSlave
17 c['slaves'] = [
18     BuildSlave("opensrf-slave", "XXX", max_builds=1),
19     BuildSlave("eg-slave", "XXX", max_builds=1)
20 ]
21
22 # 'slavePortnum' defines the TCP port to listen on for connections from slaves.
23 # This must match the value configured into the buildslaves (with their
24 # --master option)
25 c['slavePortnum'] = XXX
26
27 ####### CHANGESOURCES
28
29 # the 'change_source' setting tells the buildmaster how it should find out
30 # about source code changes.  Here we point to OpenSRF:
31 def split_file_branches_trunk(path):
32     pieces = path.split('/')
33     if pieces[0] == 'trunk':
34         return ('trunk', '/'.join(pieces[1:]))
35     elif pieces[0] == 'branches':
36         return ('/'.join(pieces[0:2]),
37                 '/'.join(pieces[2:]))
38     else:
39         return None
40
41 from buildbot.changes import svnpoller
42 c['change_source'] = (
43         svnpoller.SVNPoller(
44                 project='OpenSRF',
45                 svnurl='svn://svn.open-ils.org/OpenSRF',
46                 split_file=svnpoller.split_file_branches,
47                 pollinterval=600),
48         svnpoller.SVNPoller(
49                 project='Evergreen',
50                 svnurl='svn://svn.open-ils.org/ILS',
51                 split_file=svnpoller.split_file_branches,
52                 pollinterval=600)
53 )
54
55 ####### FILTERS
56 from buildbot.schedulers.filter import ChangeFilter
57 trunk_filter = ChangeFilter(project='OpenSRF', branch=None)
58 rel_1_6_filter = ChangeFilter(project='OpenSRF', branch="branches/rel_1_6")
59 rel_2_0_filter = ChangeFilter(project='OpenSRF', branch="branches/rel_2_0")
60 eg_rel_1_6_1_filter = ChangeFilter(project='Evergreen', branch="branches/rel_1_6_1")
61 eg_rel_2_0_filter = ChangeFilter(project='Evergreen', branch="branches/rel_2_0")
62 eg_rel_2_1_filter = ChangeFilter(project='Evergreen', branch="branches/rel_2_1")
63 eg_trunk_filter = ChangeFilter(project='Evergreen', branch=None)
64
65 ####### SCHEDULERS
66
67 # Configure the Schedulers, which decide how to react to incoming changes.  In this
68 # case, just kick off a 'runtests' build
69
70 from buildbot.scheduler import Scheduler
71 c['schedulers'] = []
72 c['schedulers'].append(Scheduler(name="osrf-trunk-full",
73             treeStableTimer=300,
74             change_filter=trunk_filter,
75             builderNames=["osrf-trunk-ubuntu-10.04-x86_64"]))
76
77 c['schedulers'].append(Scheduler(name="osrf-rel_1_6",
78             treeStableTimer=300,
79             change_filter=rel_1_6_filter,
80             builderNames=["osrf-rel_1_6-ubuntu-10.04-x86_64"]))
81
82 c['schedulers'].append(Scheduler(name="osrf-rel_2_0",
83             treeStableTimer=300,
84             change_filter=rel_2_0_filter,
85             builderNames=["osrf-rel_2_0-ubuntu-10.04-x86_64"]))
86
87 c['schedulers'].append(Scheduler(name="evergreen-rel_1_6_1",
88             treeStableTimer=300,
89             change_filter=eg_rel_1_6_1_filter,
90             builderNames=["evergreen-rel_1_6_1-debian-6.00-x86_64"]))
91
92 c['schedulers'].append(Scheduler(name="evergreen-rel_2_0",
93             treeStableTimer=300,
94             change_filter=eg_rel_2_0_filter,
95             builderNames=["evergreen-rel_2_0-debian-6.00-x86_64"]))
96
97 c['schedulers'].append(Scheduler(name="evergreen-rel_2_1",
98             treeStableTimer=300,
99             change_filter=eg_rel_2_1_filter,
100             builderNames=["evergreen-rel_2_1-debian-6.00-x86_64"]))
101
102 c['schedulers'].append(Scheduler(name="evergreen-trunk",
103             treeStableTimer=300,
104             change_filter=eg_trunk_filter,
105             builderNames=["evergreen-trunk-debian-6.00-x86_64"]))
106
107 ####### BUILDERS
108
109 # The 'builders' list defines the Builders, which tell Buildbot how to perform a build:
110 # what steps, and which slaves can execute them.  Note that any particular build will
111 # only take place on one slave.
112
113 from buildbot.process.factory import BuildFactory
114 from buildbot.steps import source 
115 from buildbot.steps import shell
116 from buildbot.steps import python
117 from buildbot.steps import python_twisted
118
119 osrf_factory = BuildFactory()
120 # check out the source
121 osrf_factory.addStep(source.SVN(
122             baseURL='svn://svn.open-ils.org/OpenSRF/',
123             defaultBranch='trunk',
124             mode='copy'))
125
126 # bootstrap the code
127 osrf_factory.addStep(shell.ShellCommand(command=["./autogen.sh"]))
128
129 # configure (default args for now)
130 osrf_factory.addStep(shell.Configure())
131
132 # compile the code
133 osrf_factory.addStep(shell.Compile(command=["make"]))
134
135 # run the Perl unit tests
136 osrf_factory.addStep(shell.PerlModuleTest(workdir="build/src/perl"))
137
138 # run the Python unit tests (available after rel_1_6)
139 def has_python_unit_test(step):
140     return step.build.getProperty('branch') != 'branches/rel_1_6'
141
142 osrf_factory.addStep(python_twisted.Trial(
143     doStepIf=has_python_unit_test,
144     testpath="build",
145     tests="src/python/tests/json_test.py"))
146
147 # report on the Python code
148 osrf_factory.addStep(python.PyLint(
149     env={"PYTHONPATH": ["src/python"]},
150     flunkOnFailure=False,
151     command=["pylint", 
152         "--output-format=parseable",
153         "src/python/opensrf.py",
154         "src/python/osrf/app.py",
155         "src/python/osrf/cache.py",
156         "src/python/osrf/conf.py",
157         "src/python/osrf/const.py",
158         "src/python/osrf/ex.py",
159         "src/python/osrf/gateway.py",
160         "src/python/osrf/http_translator.py",
161         "src/python/osrf/json.py",
162         "src/python/osrf/log.py",
163         "src/python/osrf/net_obj.py",
164         "src/python/osrf/net.py",
165         "src/python/osrf/server.py",
166         "src/python/osrf/ses.py",
167         "src/python/osrf/set.py",
168         "src/python/osrf/stack.py",
169         "src/python/osrf/system.py",
170         "src/python/osrf/xml_obj.py",
171         "src/python/osrf/apps/example.py"]))
172
173 eg_factory = BuildFactory()
174 # check out the source
175 eg_factory.addStep(source.SVN(
176             baseURL='svn://svn.open-ils.org/ILS/',
177             defaultBranch='trunk',
178             mode='copy'))
179
180 # bootstrap the code
181 eg_factory.addStep(shell.ShellCommand(command=["./autogen.sh"]))
182
183 # configure (default args for now)
184 eg_factory.addStep(shell.Configure())
185
186 # compile the code
187 eg_factory.addStep(shell.Compile(command=["make"]))
188
189 class PerlModuleTestMFHDMadness(shell.PerlModuleTest):
190     'Override PerlModuleTest with nonstandard library location for testlib.pm'
191     command = ['prove', '--lib', 'lib', '-I', 'lib/OpenILS/Utils/MFHD/test', '-r', 't']
192     total = 0
193
194 def has_perl_unit_tests(step):
195     if (step.build.getProperty('branch') == 'branches/rel_1_6'):
196         return false
197     elif (step.build.getProperty('branch') == 'branches/rel_2_0'):
198         return false
199     return true
200
201 # run the Perl unit tests
202 eg_factory.addStep(PerlModuleTestMFHDMadness(
203     doStepIf=has_perl_unit_tests,
204     workdir="build/Open-ILS/src/perlmods")
205 )
206
207 # report on the Python code
208 eg_factory.addStep(python.PyLint(
209     env={"PYTHONPATH": ["Open-ILS/src/python"]},
210     flunkOnFailure=False,
211     command=["pylint", 
212         "--output-format=parseable",
213         "Open-ILS/src/python/setup.py",
214         "Open-ILS/src/python/oils/const.py",
215         "Open-ILS/src/python/oils/event.py",
216         "Open-ILS/src/python/oils/__init__.py",
217         "Open-ILS/src/python/oils/org.py",
218         "Open-ILS/src/python/oils/srfsh.py",
219         "Open-ILS/src/python/oils/system.py",
220         "Open-ILS/src/python/oils/utils/csedit.py",
221         "Open-ILS/src/python/oils/utils/idl.py",
222         "Open-ILS/src/python/oils/utils/__init__.py",
223         "Open-ILS/src/python/oils/utils/utils.py"
224     ]
225 ))
226
227 from buildbot.config import BuilderConfig
228
229 c['builders'] = []
230 c['builders'].append(
231     BuilderConfig(name="osrf-trunk-ubuntu-10.04-x86_64",
232       slavenames=["opensrf-slave"],
233       factory=osrf_factory))
234 c['builders'].append(
235     BuilderConfig(name="osrf-rel_1_6-ubuntu-10.04-x86_64",
236       slavenames=["opensrf-slave"],
237       factory=osrf_factory))
238 c['builders'].append(
239     BuilderConfig(name="osrf-rel_2_0-ubuntu-10.04-x86_64",
240       slavenames=["opensrf-slave"],
241       factory=osrf_factory))
242 c['builders'].append(
243     BuilderConfig(name="evergreen-rel_1_6_1-debian-6.00-x86_64",
244       slavenames=["eg-slave"],
245       factory=eg_factory))
246 c['builders'].append(
247     BuilderConfig(name="evergreen-rel_2_0-debian-6.00-x86_64",
248       slavenames=["eg-slave"],
249       factory=eg_factory))
250 c['builders'].append(
251     BuilderConfig(name="evergreen-rel_2_1-debian-6.00-x86_64",
252       slavenames=["eg-slave"],
253       factory=eg_factory))
254 c['builders'].append(
255     BuilderConfig(name="evergreen-trunk-debian-6.00-x86_64",
256       slavenames=["eg-slave"],
257       factory=eg_factory))
258
259 ####### STATUS TARGETS
260
261 # 'status' is a list of Status Targets. The results of each build will be
262 # pushed to these targets. buildbot/status/*.py has a variety to choose from,
263 # including web pages, email senders, and IRC bots.
264
265 c['status'] = []
266
267 from buildbot.status import html
268 from buildbot.status.web import auth, authz
269
270 users = [('XXX', 'XXX'), ('XXX', 'XXX')]
271 authz_cfg=authz.Authz(
272     auth=auth.BasicAuth(users),
273     # change any of these to True to enable; see the manual for more
274     # options
275     gracefulShutdown = False,
276     forceBuild = 'auth', # use this to test your slave once it is set up
277     forceAllBuilds = False,
278     pingBuilder = False,
279     stopBuild = False,
280     stopAllBuilds = False,
281     cancelPendingBuild = False,
282 )
283 c['status'].append(html.WebStatus(http_port=8010, authz=authz_cfg))
284
285 # Send mail when a build is broken
286 from buildbot.status.mail import MailNotifier
287 mn = MailNotifier(
288     fromaddr="buildbot@testing.esilibrary.com",
289     sendToInterestedUsers=False,
290     mode='problem',
291     extraRecipients=["dan@coffeecode.net","open-ils-dev@list.georgialibraries.org"])
292
293 # Uncomment to actually send mail
294 # c['status'].append(mn)
295
296 ####### PROJECT IDENTITY
297
298 # the 'projectName' string will be used to describe the project that this
299 # buildbot is working on. For example, it is used as the title of the
300 # waterfall HTML page. The 'projectURL' string will be used to provide a link
301 # from buildbot HTML pages to your project's home page.
302
303 c['projectName'] = "Evergreen and OpenSRF"
304 c['projectURL'] = "http://evergreen-ils.org/"
305
306 # the 'buildbotURL' string should point to the location where the buildbot's
307 # internal web server (usually the html.WebStatus page) is visible. This
308 # typically uses the port number set in the Waterfall 'status' entry, but
309 # with an externally-visible host name which the buildbot cannot figure out
310 # without some help.
311
312 c['buildbotURL'] = "http://testing.evergreen-ils.org/buildbot/"
313
314 ####### DB URL
315
316 # This specifies what database buildbot uses to store change and scheduler
317 # state.  You can leave this at its default for all but the largest
318 # installations.
319 c['db_url'] = "sqlite:///state.sqlite"
320