summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Carpenter <devan@taler.net>2023-09-06 19:06:03 -0400
committerDevan Carpenter <devan@taler.net>2023-09-06 19:06:03 -0400
commitcc567fa07429aae3bf3b11c10ab1d9f0635893ce (patch)
tree686df9cc71e5d0b5e53e30966da48ace78bf68b0
parentc8a24e312122d7e27f5611a7a152790ac62818bb (diff)
downloaddeployment-cc567fa07429aae3bf3b11c10ab1d9f0635893ce.tar.gz
deployment-cc567fa07429aae3bf3b11c10ab1d9f0635893ce.tar.bz2
deployment-cc567fa07429aae3bf3b11c10ab1d9f0635893ce.zip
buildbot: remove unused lcov builder
-rw-r--r--buildbot/master.cfg51
1 files changed, 0 insertions, 51 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index da094a3..521a24a 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -503,57 +503,6 @@ SCHEDULERS.append(schedulers.SingleBranchScheduler(
))
-################ 4: LCOV JOB ###################################
-
-##
-# This worker makes the code coverage and publishes it
-# under the "lcov" Website.
-WORKERS.append(Worker("lcov-worker", "lcov-pass"))
-
-LCOV_FACTORY = create_factory_with_deployment()
-LCOV_FACTORY.addStep(git_step("git://git.taler.net/wallet-core.git"))
-LCOV_FACTORY.addStep(
- ShellCommand(
- name="fetch",
- description="Running yarn install of wallet",
- descriptionDone="Correctly installed",
- command=["npm", "install", "-g", "--prefix", "$HOME", "@gnu-taler/taler-wallet-cli"],
- workdir="build/",
- haltOnFailure=True,
- )
-)
-LCOV_FACTORY.addStep(
- ShellCommand(
- name="build",
- description="Building other Taler components",
- descriptionDone="Taler built",
- command=["./build.sh"],
- workdir="../../deployment/buildbot",
- haltOnFailure=True,
- env={'TALER_COVERAGE': "1"},
- )
-)
-LCOV_FACTORY.addStep(
- ShellCommand(
- name="coverage generation",
- description="running tests",
- descriptionDone="generating HTML report",
- command=["/usr/bin/sudo", "/usr/local/bin/netjail.sh", "/home/lcovworker/deployment/buildbot/coverage.sh"],
- workdir="../../deployment/buildbot",
- env={'PATH': "${HOME}/local/bin:${PATH}"}
- )
-)
-
-BUILDERS.append(util.BuilderConfig(
- name="lcov-builder",
- workernames=["lcov-worker"],
- factory=LCOV_FACTORY
-))
-
-EMAIL_ALERTS.append("lcov-builder")
-NIGHTLY_TRIGGERS.append("lcov-builder")
-NIGHTLY_TRIGGERS.append("taler-demo-healthcheck-builder")
-
################ 5: UNIT TEST JOB ###################################
##