aboutsummaryrefslogtreecommitdiffstats
path: root/yocto-worker/buildbot.tac.example
blob: c6839aa8d8eb3047194e58d71cbf228725b0f34b (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
import os

from twisted.application import service
from buildslave.bot import BuildSlave

basedir = r'.'
rotateLength = 10000000
maxRotatedFiles = 10

# if this is a relocatable tac file, get the directory containing the TAC
if basedir == '.':
    import os.path
    basedir = os.path.abspath(os.path.dirname(__file__))

# note: this line is matched against to check that this is a buildslave
# directory; do not edit it.
application = service.Application('buildslave')

try:
  from twisted.python.logfile import LogFile
  from twisted.python.log import ILogObserver, FileLogObserver
  logfile = LogFile.fromFullPath(os.path.join(basedir, "twistd.log"), rotateLength=rotateLength,
                                 maxRotatedFiles=maxRotatedFiles)
  application.setComponent(ILogObserver, FileLogObserver(logfile).emit)
except ImportError:
  # probably not yet twisted 8.2.0 and beyond, can't set log yet
  pass

###################
# WORKER SETTINGS #
###################

buildmaster_host = 'localhost' #example: 'builder1.myproject.org'
port = 9989 # same value as workerPortNum
workername = 'example-worker' # same as c['workers'] example-worker
passwd = '<PASS>' # same as c['workers'] <PASS>
keepalive = 600
usepty = 0
umask = 022
maxdelay = 300

####################
# /WORKER SETTINGS #
####################

s = BuildSlave(buildmaster_host, port, workername, passwd, basedir,
               keepalive, usepty, umask=umask, maxdelay=maxdelay)
s.setServiceParent(application)