aboutsummaryrefslogtreecommitdiffstats
path: root/yocto-worker/buildbot.tac.example
diff options
context:
space:
mode:
Diffstat (limited to 'yocto-worker/buildbot.tac.example')
-rw-r--r--yocto-worker/buildbot.tac.example49
1 files changed, 0 insertions, 49 deletions
diff --git a/yocto-worker/buildbot.tac.example b/yocto-worker/buildbot.tac.example
deleted file mode 100644
index c6839aa8..00000000
--- a/yocto-worker/buildbot.tac.example
+++ /dev/null
@@ -1,49 +0,0 @@
-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)
-