taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 13daf9bc6a75fc0e619d9adeb694fffd32be1735
parent ddcfb1bae6ba331e20d3f6dfa11e0d3bf0b8d328
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Fri, 19 Apr 2019 18:03:39 +0200

Make dedicate workers to top the tip reserve up.

Diffstat:
Mbuildbot/master.cfg | 17++++++++++++++---
1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -55,6 +55,16 @@ c["workers"] = [ worker.Worker("builder-worker-blue", "blue-pass"), ## + # This worker builds Taler for the 'green' color under + # the 'test' deployment. + worker.Worker("topper-worker-green", "topper-green-pass"), + + ## + # This worker builds Taler for the 'blue' color under + # the 'test' deployment. + worker.Worker("topper-worker-blue", "topper-blue-pass"), + + ## # This worker cares about switching the 'socket' symlink # under /home/test; this way we activate the test or blue # color. @@ -508,9 +518,10 @@ AUDITOR_BUILDER = util.BuilderConfig( TIP_RESERVE_TOPPER_BUILDER = util.BuilderConfig( name="tip-reserve-topper-builder", - workernames=["builder-worker-green", - "builder-worker-blue"], - factory=TIP_RESERVE_TOPPER_FACTORY) + workernames=["topper-worker-green", + "topper-worker-blue"], + factory=TIP_RESERVE_TOPPER_FACTORY, + nextWorker=pick_active_color) DEMO_SERVICES_CHECKER_BUILDER = util.BuilderConfig( name="demo-services-checker-builder",