taler-deployment

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

commit 7739553d0aca3fea61f5a4bc821f488165b22a11
parent 63327d51955d29ff94d79bd91cf8be4d8895c68c
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Thu, 16 Feb 2017 10:19:57 +0100

Buildbot runs selenium now.

Diffstat:
Mbuildbot/master-lonelyslave.cfg | 17+++++------------
1 file changed, 5 insertions(+), 12 deletions(-)

diff --git a/buildbot/master-lonelyslave.cfg b/buildbot/master-lonelyslave.cfg @@ -56,19 +56,12 @@ gitMaster = SingleBranchScheduler( reason="Commit pushed for one of the sub-projects", change_filter=filter.ChangeFilter(branch='master'), treeStableTimer=300, - builderNames=["lone-builder", "lcov-build"]) + builderNames=["lone-builder", "lcov-build", "auto-click"]) force = ForceScheduler(name="force-build", - builderNames=["lone-builder", "lcov-build"]) + builderNames=["lone-builder", "lcov-build", "auto-click"]) -# For now, the whole withdraw/pay cliking is started manually -# (as the blue-green infrastructure needs some upgrading) -forceClick = ForceScheduler( - name="force-clicking", - builderNames=["auto-click"]) - - -c['schedulers'] = [force, forceClick, gitMaster] +c['schedulers'] = [force, gitMaster] ####### BUILDERS # They know *how* to build: which scripts need to be invoked, @@ -125,8 +118,8 @@ autoClick = BuildFactory() autoClick.addStep(ShellCommand(name="clicker", description="Performing demo", descriptionDone="Demo finished", - command=["launch_selenium_test.sh"], - env={'PATH': "${HOME}/deployment/docker/selenium:${PATH}"})) + command=["launch_selenium_test"], + env={'PATH': "${HOME}/local/bin:${PATH}"})) from buildbot.config import BuilderConfig