| Index: masters/master.chromium.memory.fyi/buildbot.tac
|
| diff --git a/masters/master.chromium.memory.fyi/buildbot.tac b/masters/master.chromium.memory.fyi/buildbot.tac
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f4bca882aa56313fac4a819fc4bea76edf18b2f9
|
| --- /dev/null
|
| +++ b/masters/master.chromium.memory.fyi/buildbot.tac
|
| @@ -0,0 +1,11 @@
|
| +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)
|
| +
|
|
|