]> code.citadel.org Git - citadel.git/blob - buildbot/master.cfg~
05046645ddb6c05cb7fe3de961f49a952b7f491c
[citadel.git] / buildbot / master.cfg~
1 # -*- python -*-
2 # ex: set syntax=python:
3
4 # This is a sample buildmaster config file. It must be installed as
5 # 'master.cfg' in your buildmaster's base directory (although the filename
6 # can be changed with the --basedir option to 'mktap buildbot master').
7
8 # It has one job: define a dictionary named BuildmasterConfig. This
9 # dictionary has a variety of keys to control different aspects of the
10 # buildmaster. They are documented in docs/config.xhtml .
11
12
13 # This is the dictionary that the buildmaster pays attention to. We also use
14 # a shorter alias to save typing.
15 c = BuildmasterConfig = {}
16
17 ####### BUILDSLAVES
18
19 # the 'slaves' list defines the set of allowable buildslaves. Each element is
20 # a tuple of bot-name and bot-password. These correspond to values given to
21 # the buildslave's mktap invocation.
22 from buildbot.buildslave import BuildSlave
23 c['slaves'] = [BuildSlave("bithorizon", "bithorizon_passvoid")]
24
25 # to limit to two concurrent builds on a slave, use
26 #  c['slaves'] = [BuildSlave("bot1name", "bot1passwd", max_builds=2)]
27
28
29 # 'slavePortnum' defines the TCP port to listen on. This must match the value
30 # configured into the buildslaves (with their --master option)
31
32 c['slavePortnum'] = 9989
33
34 ####### CHANGESOURCES
35
36 # the 'change_source' setting tells the buildmaster how it should find out
37 # about source code changes. Any class which implements IChangeSource can be
38 # put here: there are several in buildbot/changes/*.py to choose from.
39
40 from buildbot.changes.pb import PBChangeSource
41 c['change_source'] = PBChangeSource()
42
43 # For example, if you had CVSToys installed on your repository, and your
44 # CVSROOT/freshcfg file had an entry like this:
45 #pb = ConfigurationSet([
46 #    (None, None, None, PBService(userpass=('foo', 'bar'), port=4519)),
47 #    ])
48
49 # then you could use the following buildmaster Change Source to subscribe to
50 # the FreshCVS daemon and be notified on every commit:
51 #
52 #from buildbot.changes.freshcvs import FreshCVSSource
53 #fc_source = FreshCVSSource("cvs.example.com", 4519, "foo", "bar")
54 #c['change_source'] = fc_source
55
56 # or, use a PBChangeSource, and then have your repository's commit script run
57 # 'buildbot sendchange', or use contrib/svn_buildbot.py, or
58 # contrib/arch_buildbot.py :
59 #
60 #from buildbot.changes.pb import PBChangeSource
61 #c['change_source'] = PBChangeSource()
62
63
64 ####### SCHEDULERS
65
66 ## configure the Schedulers
67
68 from buildbot.scheduler import Scheduler
69 c['schedulers'] = []
70 c['schedulers'].append(Scheduler(name="all", branch=None,
71                                  treeStableTimer=2*60,
72                                  builderNames=["buildbot-citadel"]))
73
74
75 ####### BUILDERS
76
77 # the 'builders' list defines the Builders. Each one is configured with a
78 # dictionary, using the following keys:
79 #  name (required): the name used to describe this bilder
80 #  slavename (required): which slave to use, must appear in c['bots']
81 #  builddir (required): which subdirectory to run the builder in
82 #  factory (required): a BuildFactory to define how the build is run
83 #  periodicBuildTime (optional): if set, force a build every N seconds
84
85 # buildbot/process/factory.py provides several BuildFactory classes you can
86 # start with, which implement build processes for common targets (GNU
87 # autoconf projects, CPAN perl modules, etc). The factory.BuildFactory is the
88 # base class, and is configured with a series of BuildSteps. When the build
89 # is run, the appropriate buildslave is told to execute each Step in turn.
90
91 # the first BuildStep is typically responsible for obtaining a copy of the
92 # sources. There are source-obtaining Steps in buildbot/process/step.py for
93 # CVS, SVN, and others.
94
95 #cvsroot = ":pserver:anonymous@cvs.sourceforge.net:/cvsroot/buildbot"
96 #cvsmodule = "buildbot"
97
98 svnurl = 'svn://uncensored.citadel.org/'
99 defaultBranch = 'trunk/'
100 baseURL = 'svn://uncensored.citadel.org/'
101
102 from buildbot.process import factory
103 from buildbot.steps.source import SVN
104 from buildbot.steps.shell import Compile
105 from buildbot.steps.python_twisted import Trial
106 f1 = factory.BuildFactory()
107 f1.addStep(SVN(defaultBranch=defaultBranch, baseURL=baseURL, mode="update"))
108 f1.addStep(Compile(command=["bash", "-c", "cd libcitadel; ./bootstrap; ./configure"]))
109 f1.addStep(Compile(command=["bash", "-c", "cd libcitadel; make"]))
110 f1.addStep(Compile(command=["bash", "-c", 
111                             "cd citadel; ./bootstrap; "
112                             "export CFLAGS='-I ../libcitadel/lib';"
113                             "export LDFLAGS='-L../libcitadel/.libs';"
114                             "./configure"]))
115 f1.addStep(Compile(command=["bash", "-c", "cd citadel; make"]))
116 f1.addStep(Compile(command=["bash", "-c", 
117                             "cd webcit; ./bootstrap; "
118                             "export CFLAGS='-I ../libcitadel/lib';"
119                             "export LDFLAGS='-L../libcitadel/.libs';"
120                             "./configure"]))
121 f1.addStep(Compile(command=["bash", "-c", "cd webcit; make"]))
122 #f1.addStep(Compile(command=["bash", "./autocompile", ""]))
123 #f1.addStep(Compile(command=["bash", "./autocompile", ""]))
124 #f1.addStep(Compile(command=["bash", "./autocompile", ""]))
125 #f1.addStep(Compile(command=["bash", "./autocompile", ""]))
126 #f1.addStep(Trial(testpath="."))
127
128 b1 = {'name': "buildbot-citadel",
129       'slavename': "bithorizon",
130       'builddir': "full",
131       'factory': f1,
132       }
133 c['builders'] = [b1]
134
135
136 ####### STATUS TARGETS
137
138 # 'status' is a list of Status Targets. The results of each build will be
139 # pushed to these targets. buildbot/status/*.py has a variety to choose from,
140 # including web pages, email senders, and IRC bots.
141
142 c['status'] = []
143
144 from buildbot.status import html
145 c['status'].append(html.WebStatus(http_port=8010, allowForce=True)) 
146
147 # from buildbot.status import mail
148 # c['status'].append(mail.MailNotifier(fromaddr="buildbot@localhost",
149 #                                      extraRecipients=["builds@example.com"],
150 #                                      sendToInterestedUsers=False))
151 #
152 # from buildbot.status import words
153 # c['status'].append(words.IRC(host="irc.example.com", nick="bb",
154 #                              channels=["#example"]))
155 #
156 # from buildbot.status import client
157 # c['status'].append(client.PBListener(9988))
158
159
160 ####### DEBUGGING OPTIONS
161
162 # if you set 'debugPassword', then you can connect to the buildmaster with
163 # the diagnostic tool in contrib/debugclient.py . From this tool, you can
164 # manually force builds and inject changes, which may be useful for testing
165 # your buildmaster without actually commiting changes to your repository (or
166 # before you have a functioning 'sources' set up). The debug tool uses the
167 # same port number as the slaves do: 'slavePortnum'.
168
169 c['debugPassword'] = "debugpassword"
170
171 # if you set 'manhole', you can ssh into the buildmaster and get an
172 # interactive python shell, which may be useful for debugging buildbot
173 # internals. It is probably only useful for buildbot developers. You can also
174 # use an authorized_keys file, or plain telnet.
175 #from buildbot import manhole
176 #c['manhole'] = manhole.PasswordManhole("tcp:9999:interface=127.0.0.1",
177 #                                       "admin", "password")
178
179
180 ####### PROJECT IDENTITY
181
182 # the 'projectName' string will be used to describe the project that this
183 # buildbot is working on. For example, it is used as the title of the
184 # waterfall HTML page. The 'projectURL' string will be used to provide a link
185 # from buildbot HTML pages to your project's home page.
186
187 c['projectName'] = "Citadel"
188 c['projectURL'] = "http://www.citadel.org/"
189
190 # the 'buildbotURL' string should point to the location where the buildbot's
191 # internal web server (usually the html.Waterfall page) is visible. This
192 # typically uses the port number set in the Waterfall 'status' entry, but
193 # with an externally-visible host name which the buildbot cannot figure out
194 # without some help.
195
196 c['buildbotURL'] = "http://localhost:8010/"