12 lines
286 B
Python
12 lines
286 B
Python
|
import os
|
||
|
|
||
|
from twisted.application import service
|
||
|
from buildbot.master import BuildMaster
|
||
|
|
||
|
basedir = os.path.dirname(os.path.abspath(__file__))
|
||
|
configfile = r'master.cfg'
|
||
|
|
||
|
application = service.Application('buildmaster')
|
||
|
BuildMaster(basedir, configfile).setServiceParent(application)
|
||
|
|