# The 'workers' list defines the set of recognized workers. Each element is
# a Worker object, specifying a unique worker name and password. The same
# worker name and password must be configured on the worker.
-c['workers'] = [worker.Worker("example-worker", "pass")]
+workerpass = None
+with open("worker-carbon.pass") as f:
+ workerpass = f.readline()
+c['workers'] = [worker.Worker("carbon-worker", workerpass)]
# 'protocols' contains information about protocols which master will use for
# communicating with workers. You must define at least 'port' option that workers
c['builders'] = []
c['builders'].append(
util.BuilderConfig(name="runtests",
- workernames=["example-worker"],
+ workernames=["carbon-worker"],
factory=factory))
####### BUILDBOT SERVICES