taler-deployment

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

commit ae24e5c8eadedcdbb63b9530b749728a64eac944
parent 51a086f49c0f59f95606da62b3974b49b1989ad9
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date:   Wed,  1 Jun 2016 00:50:56 +0200

naming lcov builder

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -49,14 +49,14 @@ git_master = SingleBranchScheduler( reason="Commit pushed for one of the sub-projects", change_filter=filter.ChangeFilter(branch='master'), treeStableTimer=300, - builderNames=["exchange-test-build"]) + builderNames=["global-build"]) force = ForceScheduler( name="force-build", revision=FixedParameter(name="revision", default=""), repository=FixedParameter(name="repository", default=""), project=FixedParameter(name="project", default=""), - builderNames=["exchange-test-build"]) + builderNames=["global-build"]) c['schedulers'] = [force, git_master] @@ -95,13 +95,13 @@ lcov.addStep(Git(repourl='git://git.taler.net/deployment.git', method='fresh', haltOnFailure=True, branch='master')) -globalBuild.addStep(ShellCommand( +lcov.addStep(ShellCommand( name="invalidation", description="Invalidating timestamps", descriptionDone="timestamps invalidated", command=["./invalidate.sh"], workdir="build/taler-build")) -globalBuild.addStep(ShellCommand( +lcov.addStep(ShellCommand( name="builder", description="Building Taler", descriptionDone="compiled", @@ -112,11 +112,11 @@ from buildbot.config import BuilderConfig c['builders'] = [] c['builders'].append( - BuilderConfig(name="exchange-test-build", + BuilderConfig(name="global-build", slavenames=["testSlave"], factory=globalBuild)) c['builders'].append( - BuilderConfig(name="exchange-test-build", + BuilderConfig(name="lcov-build", slavenames=["lcovSlave"], factory=lcov)) ####### STATUS TARGETS