forked from MariaDB/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildbot.tac
39 lines (29 loc) · 1.04 KB
/
buildbot.tac
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
import os
from twisted.application import service
from buildbot.master import BuildMaster
basedir = "."
log_basedir = "/var/log/buildbot/"
rotateLength = 20000000
maxRotatedFiles = 30
configfile = "master.cfg"
# Default umask for server
umask = None
# if this is a relocatable tac file, get the directory containing the TAC
if basedir == ".":
import os
basedir = os.path.abspath(os.path.dirname(__file__))
# note: this line is matched against to check that this is a buildmaster
# directory; do not edit it.
application = service.Application('buildmaster') # fmt: skip
from twisted.python.log import FileLogObserver, ILogObserver
from twisted.python.logfile import LogFile
logfile = LogFile.fromFullPath(
os.path.join(log_basedir, "%s"),
rotateLength=rotateLength,
maxRotatedFiles=maxRotatedFiles,
)
application.setComponent(ILogObserver, FileLogObserver(logfile).emit)
m = BuildMaster(basedir, configfile, umask)
m.setServiceParent(application)
m.log_rotation.rotateLength = rotateLength
m.log_rotation.maxRotatedFiles = maxRotatedFiles