gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] 01/02: buildbot: remove old deprecated and disabled j


From: gnunet
Subject: [taler-deployment] 01/02: buildbot: remove old deprecated and disabled jobs
Date: Tue, 09 Jan 2024 15:51:15 +0100

This is an automated email from the git hooks/post-receive script.

devan-carpenter pushed a commit to branch master
in repository deployment.

commit 6407645812aae461e96b45e8a443c61af37b513d
Author: Devan Carpenter <devan@taler.net>
AuthorDate: Tue Jan 9 09:48:40 2024 -0500

    buildbot: remove old deprecated and disabled jobs
---
 buildbot/master.cfg | 213 ----------------------------------------------------
 1 file changed, 213 deletions(-)

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 
###################################
 
 ##

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]