From 6407645812aae461e96b45e8a443c61af37b513d Mon Sep 17 00:00:00 2001 From: Devan Carpenter Date: Tue, 9 Jan 2024 09:48:40 -0500 Subject: buildbot: remove old deprecated and disabled jobs --- buildbot/master.cfg | 213 ---------------------------------------------------- 1 file changed, 213 deletions(-) (limited to 'buildbot/master.cfg') diff --git a/buildbot/master.cfg b/buildbot/master.cfg index b51d9e8..02430da 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -312,35 +312,6 @@ DOC_FACTORY.addStep( ) ) -# # DOCS.GIT - GENERATE STEP 1 (create docker image) - javisep - -# DOC_FACTORY = create_factory_with_deployment() -# DOC_FACTORY.addStep( -# ShellCommand( -# name="build image docs", -# description="Building documentation", -# descriptionDone="Documentation built.", -# command=["./build.sh"], -# workdir="/home/docbuilder/deployment/docker/docs-build", -# env={'PATH': "${HOME}/.local/bin:${PATH}"}, -# haltOnFailure=True -# ) -# ) - -# # DOCS.GIT - GENERATE STEP 2 (execute docker image) - javisep - -# DOC_FACTORY.addStep( -# ShellCommand( -# name="run image docs", -# description="Building documentation", -# descriptionDone="Documentation built.", -# command=["./run.sh"], -# workdir="/home/docbuilder/deployment/docker/docs-build", -# env={'PATH': "${HOME}/.local/bin:${PATH}"}, -# haltOnFailure=True -# ) -# ) - # OTHER STUFF, IN THE SAME WORKER ... DOC_FACTORY.addStep( @@ -656,26 +627,6 @@ BUILDERS.append(util.BuilderConfig( CODECHANGE_TRIGGERS.append("checker-builder") -################ 6: 'test.taler.net' deployment JOB ################################### - -# REMOVED BY JAVIER SEPULVEDA - JANUARY 24, 2023 - - -################ 7: 'test-auditor' deployment JOB ################################### - -# REMOVED BY JAVIER SEPULVEDA - JANUARY 24, 2023 - - -################ 8: 'demo-auditor' deployment JOB ################################### - -# REMOVED BY JAVIER SEPULVEDA - JANUARY 24, 2023 - - -################ 8: 'build wallet-core' JOB ################################### - -# REMOVED BY JAVIER SEPULVEDA - JANUARY 24, 2023 - - ################ 9: 'check links' JOB ################################### ## @@ -732,52 +683,6 @@ SERVICES.append(reporters.MailNotifier( NIGHTLY_TRIGGERS.append("linkchecker-builder") -################ 11: 'demo checks' JOB ################################### - -# This worker is not longer in use - March 10, 2023 - @javisep - -# Removed "check-tips-builder" by Javier Sepulveda - January 24,2023 - -## -# This worker checks that all the services run under the -# 'demo' deployment are up&running. - - - -# WORKERS.append(Worker("demo-worker", "demo-pass")) -# DEMO_SERVICES_INTEGRATIONTEST_FACTORY = create_factory_with_deployment() -# DEMO_SERVICES_INTEGRATIONTEST_FACTORY.addStep( -# ShellCommand( -# name="demo services checker", -# description="Checking demo services are online", -# descriptionDone="Demo services are online!.", -# command=["./checks.sh"], -# workdir="../../deployment/buildbot", -# haltOnFailure=True, -# # Needed to test the 'demo' deployment. -# env={"DEPLOYMENT": "demo"} -# ) -# ) -# BUILDERS.append(util.BuilderConfig( -# name="demo-services-checker-builder", -# workernames="demo-worker", -# factory=DEMO_SERVICES_INTEGRATIONTEST_FACTORY -# )) - - - - - -# EMAIL_ALERTS.append("demo-services-checker-builder") - -# # We check demo once per hour. -# SCHEDULERS.append(schedulers.Periodic( -# name="demo-services-checker-scheduler", -# periodicBuildTimer=60 * 60, # 1 hour -# builderNames=["demo-services-checker-builder"] -# )) - - ################ 12: 'demo health wallet-cli check' JOB ################################### @@ -850,124 +755,6 @@ BUILDERS.append(util.BuilderConfig( WALLETCHANGE_TRIGGERS.append("taler-test-healthcheck-builder") -################ 14: upgrade test deployment JOB ################################### - -## -# testing buildbot using the "buildslavetest" user (for no specific reason except it exists) -# Location: /home/buidlslavetest @ taler.net -WORKERS.append(Worker("buildslavetest-worker", "Gei8naiyox4uuhoo")) - -BUILD_FACTORY = create_factory_with_deployment() -BUILD_FACTORY.addStep( - ShellCommand( - name="build", - description="Building all Taler codebase.", - descriptionDone="Taler built.", - command=["./build.sh"], - workdir="../../deployment/buildbot", - haltOnFailure=True, - timeout=18000 # 5 hours, to avoid the Docker cleanup to timeout. - ) -) - -BUILD_FACTORY.addStep( - ShellCommand( - name="restart services", - description="Restart services keeping data.", - descriptionDone="Restarting Taler.", - command=["./restart.sh"], - workdir="../../deployment/buildbot", - haltOnFailure=True, - env={ - 'BRANCH': util.Property("branch"), - # Nginx should reverse proxy to these ports. - 'TALER_DB_PORT': "16011", - 'TALER_MERCHANT_PORT': "16000", - 'TALER_EXCHANGE_PORT': "16001", - 'TALER_BLOG_PORT': "16002", - 'TALER_DONATIONS_PORT': "16003", - 'TALER_SURVEY_PORT': "16004", - 'TALER_LANDING_PORT': "16005", - 'TALER_SYNC_PORT': "16006", - 'LIBEUFIN_SANDBOX_PORT': "16007", - 'LIBEUFIN_NEXUS_PORT': "16008", - 'LIBEUFIN_FRONTEND_PORT': "16009", - 'TALER_POS_PORT': "16010" - } - ) -) -BUILD_FACTORY.addStep( - ShellCommand( - name="check services correctly restarted", - description="Checking services are correctly restarted.", - descriptionDone="All services are correctly restarted.", - command=["./checks.sh"], - workdir="../../deployment/buildbot", - haltOnFailure=True, - env={'DEPLOYMENT': "test"} - ) -) - - - -################ 15: Python linting JOB ################################### - -# This job is noat active / complete yet! -# def lint_dispatcher(project): -# return "./lint_%s.sh" % project - -# LINT_FACTORY = util.BuildFactory() -# LINT_FACTORY.addStep( -# ShellCommand( -# name="Python linter", -# description="linting Python", -# descriptionDone="linting done", -# command=util.Transform(lint_dispatcher, util.Property("project")), -# workdir="../../deployment/taler-build" -# ) -# ) - - -# This builder is NOT ACTIVE! -#BUILDERS.append(util.BuilderConfig( -# name="lint-builder", -# workernames=["lint-worker"], -# factory=LINT_FACTORY -#)) - -# Consider adding other Python parts, like the various frontends. -# NOTE: scheduler is NOT active! (commented out below) -#SCHEDULERS.append(schedulers.SingleBranchScheduler( -# name="lint-scheduler", -# change_filter=util.ChangeFilter( -# branch="master", project_re="(bank|donations|survey|blog)" -# ), -# treeStableTimer=None, -# builderNames=["lint-builder"] -#)) - - -################ 16: Selenium JOB ################################### - -# This job is noat active! -SELENIUM_FACTORY = create_factory_with_deployment() -SELENIUM_FACTORY.addStep( - ShellCommand( - name="selenium", - description="Headless browser test", - descriptionDone="Test finished", - command=["launch_selenium_test"], - env={'PATH': "${HOME}/local/bin:/usr/lib/chromium:${PATH}"} - ) -) - -#BUILDERS.append(util.BuilderConfig( -# name="selenium-builder", -# workernames=["selenium-worker"], -# factory=SELENIUM_FACTORY -#)) - - ################ 17: 'COMPILE AND CHECK - TALER ' JOB ################################### ## -- cgit v1.2.3