taler-deployment

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

commit 1dfed71388c3fe75da9583d765913d13df9e2ac3
parent c045d821e96377e75d1f5c68db5f76ff4f26f71c
Author: buckE <buckE@disroot.org>
Date:   Wed, 17 Jun 2020 05:35:16 +0000

moved LINKCHECKER FACTORY above BUILDER

Diffstat:
Mbuildbot/master.cfg | 31++++++++++++++++---------------
1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -37,7 +37,9 @@ c = BuildmasterConfig = {} # Silence warning and allow very basic phoning home. c["buildbotNetUsageData"] = "basic" -### Functions + + +### Define Functions and Declarations # Convenience function that checks out a Git repository. # First argument is the URL of the Git to clone, second @@ -53,7 +55,6 @@ def git_step(repo,target_branch="master"): branch=target_branch ) - # Convenience function that runs 'make check' in a # directory of the code inside of a netjail. def jailed_check(package,srcdir): @@ -154,6 +155,19 @@ LINKCHECKER_SCHEDULER = schedulers.Nightly( minute=30 ) +# linkchecker FACTORY +LINKCHECKER_FACTORY = create_factory_with_deployment() +LINKCHECKER_FACTORY.addStep( + ShellCommand( + name="linkchecker", + description="Check taler.net website for broken links && Notify", + descriptionDone="linkchecker links checked", + command=["./linkchecker.sh"], + workdir="../../deployment/buildbot", + haltOnFailure=True + ) +) + # linkchecker BUILDER # Builder for linkchecker LINKCHECKER_BUILDER = util.BuilderConfig( @@ -168,19 +182,6 @@ DEMO_SERVICES_CHECKER_BUILDER = util.BuilderConfig( factory=DEMO_SERVICES_INTEGRATIONTEST_FACTORY ) -# linkchecker FACTORY -LINKCHECKER_FACTORY = create_factory_with_deployment() -LINKCHECKER_FACTORY.addStep( - ShellCommand( - name="linkchecker", - description="Check taler.net website for broken links && Notify", - descriptionDone="linkchecker links checked", - command=["./linkchecker.sh"], - workdir="../../deployment/buildbot", - haltOnFailure=True - ) -) - ### /end --- linkchecker --- # / ##########################################################################################