]> git.evergreen-ils.org Git - OpenSRF.git/blob - examples/buildbot.cfg
Coerce the weird test env for MFHD into working inside 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 # run the Perl unit tests
195 eg_factory.addStep(PerlModuleTestMFHDMadness(workdir="build/Open-ILS/src/perlmods"))
196
197 # report on the Python code
198 eg_factory.addStep(python.PyLint(
199     env={"PYTHONPATH": ["Open-ILS/src/python"]},
200     flunkOnFailure=False,
201     command=["pylint", 
202         "--output-format=parseable",
203         "Open-ILS/src/python/setup.py",
204         "Open-ILS/src/python/oils/const.py",
205         "Open-ILS/src/python/oils/event.py",
206         "Open-ILS/src/python/oils/__init__.py",
207         "Open-ILS/src/python/oils/org.py",
208         "Open-ILS/src/python/oils/srfsh.py",
209         "Open-ILS/src/python/oils/system.py",
210         "Open-ILS/src/python/oils/utils/csedit.py",
211         "Open-ILS/src/python/oils/utils/idl.py",
212         "Open-ILS/src/python/oils/utils/__init__.py",
213         "Open-ILS/src/python/oils/utils/utils.py"
214     ]
215 ))
216
217 from buildbot.config import BuilderConfig
218
219 c['builders'] = []
220 c['builders'].append(
221     BuilderConfig(name="osrf-trunk-ubuntu-10.04-x86_64",
222       slavenames=["opensrf-slave"],
223       factory=osrf_factory))
224 c['builders'].append(
225     BuilderConfig(name="osrf-rel_1_6-ubuntu-10.04-x86_64",
226       slavenames=["opensrf-slave"],
227       factory=osrf_factory))
228 c['builders'].append(
229     BuilderConfig(name="osrf-rel_2_0-ubuntu-10.04-x86_64",
230       slavenames=["opensrf-slave"],
231       factory=osrf_factory))
232 c['builders'].append(
233     BuilderConfig(name="evergreen-rel_1_6_1-debian-6.00-x86_64",
234       slavenames=["eg-slave"],
235       factory=eg_factory))
236 c['builders'].append(
237     BuilderConfig(name="evergreen-rel_2_0-debian-6.00-x86_64",
238       slavenames=["eg-slave"],
239       factory=eg_factory))
240 c['builders'].append(
241     BuilderConfig(name="evergreen-rel_2_1-debian-6.00-x86_64",
242       slavenames=["eg-slave"],
243       factory=eg_factory))
244 c['builders'].append(
245     BuilderConfig(name="evergreen-trunk-debian-6.00-x86_64",
246       slavenames=["eg-slave"],
247       factory=eg_factory))
248
249 ####### STATUS TARGETS
250
251 # 'status' is a list of Status Targets. The results of each build will be
252 # pushed to these targets. buildbot/status/*.py has a variety to choose from,
253 # including web pages, email senders, and IRC bots.
254
255 c['status'] = []
256
257 from buildbot.status import html
258 from buildbot.status.web import auth, authz
259
260 users = [('XXX', 'XXX'), ('XXX', 'XXX')]
261 authz_cfg=authz.Authz(
262     auth=auth.BasicAuth(users),
263     # change any of these to True to enable; see the manual for more
264     # options
265     gracefulShutdown = False,
266     forceBuild = 'auth', # use this to test your slave once it is set up
267     forceAllBuilds = False,
268     pingBuilder = False,
269     stopBuild = False,
270     stopAllBuilds = False,
271     cancelPendingBuild = False,
272 )
273 c['status'].append(html.WebStatus(http_port=8010, authz=authz_cfg))
274
275 # Send mail when a build is broken
276 from buildbot.status.mail import MailNotifier
277 mn = MailNotifier(
278     fromaddr="buildbot@testing.esilibrary.com",
279     sendToInterestedUsers=False,
280     mode='problem',
281     extraRecipients=["dan@coffeecode.net","open-ils-dev@list.georgialibraries.org"])
282
283 # Uncomment to actually send mail
284 # c['status'].append(mn)
285
286 ####### PROJECT IDENTITY
287
288 # the 'projectName' string will be used to describe the project that this
289 # buildbot is working on. For example, it is used as the title of the
290 # waterfall HTML page. The 'projectURL' string will be used to provide a link
291 # from buildbot HTML pages to your project's home page.
292
293 c['projectName'] = "Evergreen and OpenSRF"
294 c['projectURL'] = "http://evergreen-ils.org/"
295
296 # the 'buildbotURL' string should point to the location where the buildbot's
297 # internal web server (usually the html.WebStatus page) is visible. This
298 # typically uses the port number set in the Waterfall 'status' entry, but
299 # with an externally-visible host name which the buildbot cannot figure out
300 # without some help.
301
302 c['buildbotURL'] = "http://testing.evergreen-ils.org/buildbot/"
303
304 ####### DB URL
305
306 # This specifies what database buildbot uses to store change and scheduler
307 # state.  You can leave this at its default for all but the largest
308 # installations.
309 c['db_url'] = "sqlite:///state.sqlite"
310