From e1a6f4eb0b23bb73fb4a35fb30418a8e29c9a2d2 Mon Sep 17 00:00:00 2001 From: Markus Katharina Brechtel Date: Mon, 4 May 2020 18:29:23 +0200 Subject: [PATCH] local worker --- templates/buildbot/master.cfg.j2 | 1 + 1 file changed, 1 insertion(+) diff --git a/templates/buildbot/master.cfg.j2 b/templates/buildbot/master.cfg.j2 index 65e5ba9..d8fe600 100644 --- a/templates/buildbot/master.cfg.j2 +++ b/templates/buildbot/master.cfg.j2 @@ -8,6 +8,7 @@ from buildbot.plugins import * c = BuildmasterConfig = {} c['workers'] = [] +c['workers'].append(worker.LocalWorker("local-worker",max_builds=1)) c['protocols'] = {'pb': {'port': 9989}}