mirror of
https://github.com/QuasarApp/QuasarAppCI.git
synced 2025-05-04 17:29:37 +00:00
added main file
This commit is contained in:
parent
3cfdfcbcf1
commit
1293829b68
30
buildbot.tac
Normal file
30
buildbot.tac
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
from twisted.application import service
|
||||||
|
from buildbot.master import BuildMaster
|
||||||
|
|
||||||
|
basedir = '/home/andrei/bot/master'
|
||||||
|
rotateLength = 10000000
|
||||||
|
maxRotatedFiles = 10
|
||||||
|
configfile = 'master.cfg'
|
||||||
|
|
||||||
|
# Default umask for server
|
||||||
|
umask = None
|
||||||
|
|
||||||
|
# if this is a relocatable tac file, get the directory containing the TAC
|
||||||
|
if basedir == '.':
|
||||||
|
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')
|
||||||
|
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)
|
||||||
|
|
||||||
|
m = BuildMaster(basedir, configfile, umask)
|
||||||
|
m.setServiceParent(application)
|
||||||
|
m.log_rotation.rotateLength = rotateLength
|
||||||
|
m.log_rotation.maxRotatedFiles = maxRotatedFiles
|
Loading…
x
Reference in New Issue
Block a user