OLD | NEW |
---|---|
(Empty) | |
1 import os | |
2 | |
3 from twisted.application import service | |
4 from buildbot.master import BuildMaster | |
5 | |
6 basedir = os.path.dirname(os.path.abspath(__file__)) | |
7 configfile = r'master.cfg' | |
8 | |
9 application = service.Application('buildmaster') | |
10 BuildMaster(basedir, configfile).setServiceParent(application) | |
11 | |
OLD | NEW |