taler-deployment

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

commit f899933e1d27e2f5e3e531464202402b37d14a86
parent ce2f823cca9bb9f8b709934b2539290d22cef73d
Author: buckE <buckE@disroot.org>
Date:   Sun, 14 Jun 2020 06:00:12 +0000

changed buildbot-sandbox to buildslavetest

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -103,8 +103,8 @@ c["workers"] = [ worker.Worker("taler-test-healthcheck", "taler-test-healthcheck-pass"), ## - # testing buildbot using the "buildbot-sandbox" user (for no specific reason except it exists) - worker.Worker("buildbot-sandbox-worker", "Gei8naiyox4uuhoo") + # testing buildbot using the "buildslavetest" user (for no specific reason except it exists) + worker.Worker("buildslavetest-worker", "Gei8naiyox4uuhoo") ] # 'protocols' contains information about protocols which master @@ -129,10 +129,10 @@ c["change_source"] = [ALLCS] # Configure the Schedulers, which decide how to react to incoming # changes. -# Run at 6am every day: coverage analysis and auditor. +# Run at 8am every day: coverage analysis and auditor. TEST_SCHEDULER = schedulers.Nightly( name="test-scheduler", - builderNames=["buildbot-sandbox-builder"], + builderNames=["buildslavetest-builder"], #branch="master", hour=8, minute=0 @@ -500,16 +500,16 @@ LINT_FACTORY.addStep( ) -# "buildbot-sandbox" Factory for testing purposes +# "buildslavetest" Factory for testing purposes # NOTE: was buildbot-weblatetest, and .sh may still have that name -BUILDBOT-SANDBOX_FACTORY = create_factory_with_deployment() -BUILDBOT-SANDBOX_FACTORY.addStep( +BUILDSLAVETEST_FACTORY = create_factory_with_deployment() +BUILDSLAVETEST_FACTORY.addStep( ShellCommand( - name="buildbot-sandbox script (for testing purposes)", + name="buildslavetest script (for testing purposes)", description="Buildbot Sandbox Worker", - descriptionDone="buildbot-sandbox: Done", - command=["./buildbot-sandbox.sh"], - workdir="/home/buildbot-sandbox/" + descriptionDone="buildslavetest: Done", + command=["./buildslavetest.sh"], + workdir="/home/buildslavetest/" ) ) @@ -823,11 +823,11 @@ DEMO_SERVICES_INTEGRATIONTEST_FACTORY.addStep( ##### BUILDERS DEFINED -# Builder to oversee the buildbot-sandbox-worker worker and, I guess, the BUILDBOT-SANDBOX_FACTORY. Used for testing purposes. -BUILDBOT-SANDBOX_BUILDER = util.BuilderConfig( - name="buildbot-sandbox-builder", - workernames=["buildbot-sandbox-worker"], - factory=BUILDBOT-SANDBOX_FACTORY +# Builder to oversee the buildslavetest-worker worker and, I guess, the BUILDSLAVETEST_FACTORY. Used for testing purposes. +BUILDSLAVETEST_BUILDER = util.BuilderConfig( + name="buildslavetest-builder", + workernames=["buildslavetest-worker"], + factory=BUILDSLAVETEST_FACTORY ) # Builder to update the buildmaster itself.