commit a627608971af929e11b4452ba22b92974adfe9f8
parent 9c1f678910c9c58bb2c8c5800e94089f56bddae4
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Wed, 17 Apr 2019 15:45:23 +0200
BB.
Auditor worker duplicates in blue and green.
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -34,7 +34,8 @@ c["workers"] = [
worker.Worker("lint-worker", "lint-pass"),
worker.Worker("demo-worker", "demo-pass"),
worker.Worker("wallet-worker", "wallet-pass"),
- worker.Worker("auditor-worker", "auditor-pass")]
+ worker.Worker("auditor-worker-green", "auditor-green-pass"),
+ worker.Worker("auditor-worker-blue", "auditor-blue-pass")]
# Maps unix users (typically found on Gv) to worker names.
NAMEMAP = {"test-green": "builder-worker-green",
@@ -418,7 +419,8 @@ def pick_active_color(builder, workers_list, build_request):
AUDITOR_BUILDER = util.BuilderConfig(
name="auditor-builder",
nextWorker=pick_active_color,
- workernames=["auditor-worker"],
+ workernames=["auditor-worker-blue",
+ "auditor-worker-green"],
factory=AUDITOR_FACTORY)
TIP_RESERVE_TOPPER_BUILDER = util.BuilderConfig(