summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
blob: f0ac56e6c76c8c567ddb0d30c457a65ceaec0984 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
import re
from buildbot.steps.source.git import Git
from buildbot.steps.shell import ShellCommand
from buildbot.plugins import \
    (reporters,
     worker,
     changes,
     schedulers,
     util)

# This is a sample buildmaster config file. It must be installed as
# 'master.cfg' in your buildmaster's base directory.

# This is the dictionary that the buildmaster pays attention to.
# We also use a shorter alias to save typing.
c = BuildmasterConfig = {}

# Silence warning and allow very basic phoning home.
c["buildbotNetUsageData"] = "basic"

####### WORKERS

# The 'workers' list defines the set of recognized workers. Each
# element is a Worker object, specifying a unique worker name and
# password.  The same worker name and password must be configured
# on the worker.
c["workers"] = [
    worker.Worker("lcov-worker", "lcov-pass"),
    worker.Worker("selenium-worker", "selenium-pass"),
    worker.Worker("doc-worker", "doc-pass"),
    worker.Worker("switcher-worker", "switcher-pass"),
    worker.Worker("debug-worker", "debug-pass"),
    worker.Worker("lint-worker", "lint-pass"),
    worker.Worker("wallet-worker", "wallet-pass")]

# 'protocols' contains information about protocols which master
# will use for communicating with workers. You must define at
# least 'port' option that workers could connect to your master
# with this protocol. 'port' must match the value configured into
# the workers (with their --master option)
c["protocols"] = {
    "pb": {
        "port": "tcp:9989:interface=127.0.0.1"}}

####### CHANGESOURCES

# the 'change_source' setting tells the buildmaster how it should
# find out about source code changes.

# NOTE: BB is bound to localhost
ALLCS = changes.PBChangeSource(user="allcs", passwd="allcs")

c["change_source"] = [ALLCS]

####### SCHEDULERS

# Configure the Schedulers, which decide how to react to incoming
# changes.

# Re-build documentation periodically

def doc_filter(change):
    _changes = change.asDict()
    if _changes.get("project") not in ["exchange", "merchant"]:
        return True
    files = _changes.get("files")
    for file in files:
        if re.search(r"doc[s]?|manual", file.get("name", "")):
            return True
    return False

NIGHTLY_SCHEDULER = schedulers.Nightly(
    name="nightly-scheduler",
    builderNames=["lcov-builder"],
    branch="master", # why mandatory?
    hour=6,
    minute=0)

DOC_SCHEDULER = schedulers.SingleBranchScheduler(
    name="periodic-doc-scheduler",
    builderNames=["doc-builder"],
    change_filter=util.ChangeFilter(
        branch="master",
        filter_fn=doc_filter,
        project_re="backoffice|help|api|www|bank|exchange|merchant"
                   "|deployment|merchant-frontend-examples"
                   "|docs-landing"),
    treeStableTimer=None)

WALLET_SCHEDULER = schedulers.SingleBranchScheduler(
    name="wallet-scheduler",
    change_filter=util.ChangeFilter(
        branch="master",
        project_re="wallet|deployment"),
    treeStableTimer=None,
    builderNames=[])

TIP_RESERVE_TOPPER_SCHEDULER = schedulers.Periodic(
    name="tip-reserve-topper-scheduler",
    periodicBuildTimer=60*60*24*10, # 10 days
    builderNames=["tip-reserve-topper-builder"]
)

ALL_SCHEDULER = schedulers.SingleBranchScheduler(
    name="all-scheduler",
    change_filter=util.ChangeFilter(
        branch="master",
        project_re="backoffice|wallet|bank|exchange"
                   "merchant|deployment|donations|blog"
                   "|survey|landing|playground"),
    treeStableTimer=None,
    builderNames=["switcher-builder"])

# Scheduler monitoring the help.git repo; a forgotten repo we
# use to test BB.
DEBUG_SCHEDULER = schedulers.SingleBranchScheduler(
    name="debug-scheduler",
    change_filter=util.ChangeFilter(
        branch="master",
        project="help"),
    treeStableTimer=None,
    builderNames=["debug-builder"])

# Consider adding other Python parts, like the various frontends.
LINT_SCHEDULER = schedulers.SingleBranchScheduler(
    name="lint-scheduler",
    change_filter=util.ChangeFilter(
        branch="master",
        project_re="bank|donations|survey|blog"),
    treeStableTimer=None,
    builderNames=["lint-builder"])

# Provide "force" button in the web UI
FORCE_SCHEDULER = schedulers.ForceScheduler(
    name="force-scheduler",
    builderNames=[
        "lcov-builder",
        "selenium-builder",
        "switcher-builder",
        "doc-builder",
        "wallet-builder",
        "tip-reserve-topper-builder"])

c["schedulers"] = [
    NIGHTLY_SCHEDULER,
    TIP_RESERVE_TOPPER_SCHEDULER,
    DOC_SCHEDULER,
    WALLET_SCHEDULER,
    ALL_SCHEDULER,
    FORCE_SCHEDULER,
    DEBUG_SCHEDULER,
    LINT_SCHEDULER]

####### BUILDERS

# The 'builders' list defines the Builders, which tell Buildbot
# how to perform a build: what steps, and which workers can execute
# them.  Note that any particular build will only take place on
# one worker.

def git_step(repo):
    return Git(repourl=repo,
               mode="full",
               method="fresh",
               logEnviron=False,
               alwaysUseLatest=True,
               haltOnFailure=True,
               branch="master")

WALLET_FACTORY = util.BuildFactory()
WALLET_FACTORY.addStep(git_step(
    "git://git.taler.net/wallet-webex.git"))
WALLET_FACTORY.addStep(ShellCommand(
    name="configuration",
    description="Running configure script",
    descriptionDone="Correctly configured",
    command=["./configure"],
    workdir="build/"))
WALLET_FACTORY.addStep(ShellCommand(
    name="test",
    description="Running wallet tests",
    descriptionDone="Test correctly run",
    command=["make", "check"],
    workdir="build/"))
WALLET_FACTORY.addStep(ShellCommand(
    name="lint",
    description="Linting the wallet",
    descriptionDone="Linting done",
    command=["make", "lint"],
    workdir="build/"))

DEBUG_FACTORY = util.BuildFactory()
DEBUG_FACTORY.addStep(ShellCommand(
    name="echo debug",
    description="just echoing a word",
    descriptionDone="builder responded",
    command=["echo", "I'm here!"]))

def lint_dispatcher(project):
    return "./lint_%s.sh" % project

LINT_FACTORY = util.BuildFactory()
LINT_FACTORY.addStep(git_step(
    "git://git.taler.net/deployment.git"))
LINT_FACTORY.addStep(ShellCommand(
    name="Python linter",
    description="linting Python",
    descriptionDone="linting done",
    command=util.Transform(lint_dispatcher,
                           util.Property("project")),
    workdir="build/taler-build"))

LCOV_FACTORY = util.BuildFactory()
LCOV_FACTORY.addStep(git_step(
    "git://git.taler.net/deployment.git"))
LCOV_FACTORY.addStep(ShellCommand(
    name="invalidation",
    description="Invalidating timestamps",
    descriptionDone="timestamps invalidated",
    command=["./invalidate.sh"],
    workdir="build/taler-build"),
    env={"TALER_ENV_NAME": "not-test"}) # work-around 'set -eu'
LCOV_FACTORY.addStep(ShellCommand(
    name="build",
    description="Compiling..",
    descriptionDone="lcov files generated",
    command=["make", "lcov"],
    workdir="build/taler-build",
    env={"PATH": "${HOME}/local/bin:${PATH}",
         "TALER_CHECKDB": "postgresql:///talercheck?host=/home/${USER}/sockets"}))

TIP_RESERVE_TOPPER_FACTORY = util.BuildFactory()
TIP_RESERVE_TOPPER_FACTORY.addStep(git_step(
    "git://git.taler.net/deployment.git"))
TIP_RESERVE_TOPPER_FACTORY.addStep(ShellCommand(
    name="tip reserve topper",
    description="Topping the tip reserve.",
    descriptionDone="Tip reserve has been topped.",
    command=["./top_reserve.sh"],
    workdir="build/buildbot"))

SWITCHER_FACTORY = util.BuildFactory()
SWITCHER_FACTORY.addStep(git_step(
    "git://git.taler.net/deployment.git"))
SWITCHER_FACTORY.addStep(ShellCommand(
    name="build",
    description="Building inactive blue-green party.",
    descriptionDone="Compile.",
    command=["./build.sh"],
    workdir="build/buildbot",
    haltOnFailure=True))
SWITCHER_FACTORY.addStep(ShellCommand(
    name="restart services",
    description="Restarting inactive blue-green party.",
    descriptionDone="Restarting Taler.",
    command=["./restart.sh"],
    workdir="build/buildbot",
    haltOnFailure=True))
SWITCHER_FACTORY.addStep(ShellCommand(
    name="check services correctly restarted",
    description="Checking services are correctly restarted.",
    descriptionDone="All services are correctly restarted.",
    command=["./checks.sh"],
    workdir="build/buildbot",
    haltOnFailure=True))
SWITCHER_FACTORY.addStep(ShellCommand(
    name="switch active party",
    description="Switch to the party which was inactive.",
    descriptionDone="Active party has been switched.",
    command=["./switch.sh"],
    workdir="build/buildbot"))

SELENIUM_FACTORY = util.BuildFactory()
SELENIUM_FACTORY.addStep(ShellCommand(
    name="selenium",
    description="Headless browser test",
    descriptionDone="Test finished",
    command=["launch_selenium_test"],
    env={'PATH': "${HOME}/local/bin:/usr/lib/chromium:${PATH}"}))

DOC_FACTORY = util.BuildFactory()
DOC_FACTORY.addStep(git_step(
    "git://git.taler.net/deployment.git"))
DOC_FACTORY.addStep(ShellCommand(
    name="build docs",
    description="Building documentation",
    descriptionDone="Documentation built.",
    command=["./build-docs.sh"],
    workdir="build/buildbot",
    haltOnFailure=True))

DEBUG_BUILDER = util.BuilderConfig(
    name="debug-builder",
    workernames=["debug-worker"],
    factory=DEBUG_FACTORY)

LINT_BUILDER = util.BuilderConfig(
    name="lint-builder",
    workernames=["lint-worker"],
    factory=LINT_FACTORY)

LCOV_BUILDER = util.BuilderConfig(
    name="lcov-builder",
    workernames=["lcov-worker"],
    factory=LCOV_FACTORY)

TIP_RESERVE_TOPPER_BUILDER = util.BuilderConfig(
    name="tip-reserve-topper-builder",
    workernames="switcher-worker",
    factory=TIP_RESERVE_TOPPER_FACTORY
)

SWITCHER_BUILDER = util.BuilderConfig(
    name="switcher-builder",
    workernames=["switcher-worker"],
    factory=SWITCHER_FACTORY)

SELENIUM_BUILDER = util.BuilderConfig(
    name="selenium-builder",
    workernames=["selenium-worker"],
    factory=SELENIUM_FACTORY)

DOC_BUILDER = util.BuilderConfig(
    name="doc-builder",
    workernames=["doc-worker"],
    factory=DOC_FACTORY)

WALLET_BUILDER = util.BuilderConfig(
    name="wallet-builder",
    workernames=["wallet-worker"],
    factory=WALLET_FACTORY)

c["builders"] = [
    LCOV_BUILDER,
    SWITCHER_BUILDER,
    TIP_RESERVE_TOPPER_BUILDER,
    SELENIUM_BUILDER,
    DOC_BUILDER,
    WALLET_BUILDER,
    DEBUG_BUILDER,
    LINT_BUILDER]

####### BUILDBOT SERVICES

# 'services' is a list of BuildbotService items like reporter
# targets. The status of each build will be pushed to these
# targets. buildbot/reporters/*.py has a variety to choose from,
# like IRC bots.

IRC = reporters.IRC(
    "irc.eu.freenode.net",
    "taler-bb",
    useColors=False,
    channels=[{"channel": "#taler"}],
    password="taler-bb-pass19",
    notify_events={
        'exception': 1,
        'successToFailure': 1,
        'failureToSuccess': 1})

EMAIL = reporters.MailNotifier(
    fromaddr="testbuild@taler.net",
    sendToInterestedUsers=False,
    mode=("problem"),
    builders=(
        "switcher-builder",
        "doc-builder",
        "wallet-builder",
        "selenium-builder"),
    extraRecipients=["buildfailures@taler.net"],
    subject="Taler build.")

c["services"] = [IRC, EMAIL]

####### PROJECT IDENTITY

c["title"] = "Taler"
c["titleURL"] = "https://taler.net"

# We use nginx to expose the BB under this URL.
c["buildbotURL"] = "https://buildbot.taler.net/"

# minimalistic config to activate new web UI
c["www"] = {
    "port": 8010,
    "plugins" : {
        "waterfall_view": {},
        "console_view":{}},
    "allowed_origins": ["https://*.taler.net"]}

####### DB URL

c["db"] = {
    # This specifies what database buildbot uses to store its
    # state.  You can leave  this at its default for all but the
    # largest installations.
    "db_url" : "sqlite:///state.sqlite",
}