summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorDevan Carpenter <devan@taler.net>2023-09-06 21:47:51 -0400
committerDevan Carpenter <devan@taler.net>2023-09-06 21:47:51 -0400
commit592fae07aed8a4c701d46c7529f5bd619f6d6098 (patch)
treecda47fa6b67d646e24ff112d6f7b4d69a85272ac /buildbot/master.cfg
parentcc567fa07429aae3bf3b11c10ab1d9f0635893ce (diff)
downloaddeployment-592fae07aed8a4c701d46c7529f5bd619f6d6098.tar.gz
deployment-592fae07aed8a4c701d46c7529f5bd619f6d6098.tar.bz2
deployment-592fae07aed8a4c701d46c7529f5bd619f6d6098.zip
buildbot: remove deprecated codespell builder
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg98
1 files changed, 0 insertions, 98 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 521a24a..94e02a4 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -717,104 +717,6 @@ SERVICES.append(reporters.MailNotifier(
NIGHTLY_TRIGGERS.append("linkchecker-builder")
-################ 10: 'check spelling' JOB ###################################
-
-##
-# codespell worker checks for spelling mistakes in code
-# Location: /home/codespell @ taler.net
-WORKERS.append(Worker("codespell-worker", "codespell-pass"))
-
-CODESPELL_FACTORY = create_factory_with_deployment()
-CODESPELL_FACTORY.addStep(
- ShellCommand(
- name="clean old deployment",
- description="cleaning previous doxygen runs",
- descriptionDone="Doxygen cleaned",
- command=["rm", "-rf", "exchange/doc/doxygen/html/", "merchant/doc/doxygen/html/" ],
- workdir="/home/codespell/sources/"
- )
-)
-CODESPELL_FACTORY.addStep(
- ShellCommand(
- name="fetch gnunet.org sources",
- description="fetching latest deployment repositories from git.gnunet.org",
- descriptionDone="GNUnet code base updated",
- command=["./update-sources.sh", "git://git.gnunet.org/", "libmicrohttpd", "gnunet"],
- workdir="../../deployment/buildbot",
- haltOnFailure=True,
- )
-)
-CODESPELL_FACTORY.addStep(
- ShellCommand(
- name="fetch taler.net sources",
- description="fetching latest deployment repositories from git.taler.net",
- descriptionDone="Taler code base updated",
- command=["./update-sources.sh", "git://git.taler.net/", "exchange", "merchant", "sync", "bank", "twister", "challenger"],
- workdir="../../deployment/buildbot",
- haltOnFailure=True,
- )
-)
-CODESPELL_FACTORY.addStep(
- ShellCommand(
- name="codespell",
- description="spell checking repositories",
- descriptionDone="Spell check complete",
- command=["/home/codespell/.local/bin/codespell", "-I", "/home/codespell/deployment/codespell/dictionary.txt", "-S", "*.bib,*.bst,*.cls,*.json,*.png,*.svg,*.wav,*.gz,*/templating/test?/**,**/auditor/*.sql,**/templating/mustach**,*.fees,*key,*.tag,*.info,*.latexmkrc,*.ecc,*.jpg,*.zkey,*.sqlite,*/contrib/hellos/**,*/vpn/tests/**,*.priv,*.file,*.tgz,*.woff,*.gif,*.odt,*.fee,*.deflate,*.dat,*.jpeg,*.eps,*.odg,*/m4/ax_lib_postgresql.m4,*/m4/libgcrypt.m4,*.rpath,config.status,ABOUT-NLS,*/doc/texinfo.tex,*.PNG,*.??.json,*.docx,*.ods,*.doc,*.docx,*.xcf,*.xlsx,*.ecc,*.ttf,*.woff2,*.eot,*.ttf,*.eot,*.mp4,*.pptx,*.epgz,*.min.js,**/*.map,**/fonts/**,*.pack.js,*.po,*.bbl,*/afl-tests/*,*/.git/**,*.pdf,*.epub,**/signing-key.asc,**/pnpm-lock.yaml,**/*.svg,**/*.cls,**/rfc.bib,**/*.bst,*/cbdc-es.tex,*/cbdc-it.tex,**/ExchangeSelection/example.ts,*/testcurl/test_tricky.c,*/i18n/strings.ts,*/src/anastasis-data.ts,**/doc/flows/main.de.tex", "bank", "exchange", "libmicrohttpd", "merchant", "sync", "twister", "challenger"],
- workdir="/home/codespell/sources/"
- )
-)
-CODESPELL_FACTORY.addStep(
- ShellCommand(
- name="gana",
- description="fetch GANA",
- descriptionDone="GANA obtained",
- command=["./bootstrap" ],
- env={'PATH': "${HOME}/.local/bin:${PATH}"},
- workdir="/home/codespell/sources/exchange/"
- )
-)
-CODESPELL_FACTORY.addStep(
- ShellCommand(
- name="doxygen::exchange",
- description="checking for doxygen mistakes in exchange",
- descriptionDone="doxygen on exchange finished",
- command=["/home/codespell/deployment/buildbot/doxygen.sh", "taler.doxy" ],
- workdir="/home/codespell/sources/exchange/doc/doxygen"
- )
-)
-CODESPELL_FACTORY.addStep(
- steps.ShellSequence(
- name="tag",
- description="prepare merchant",
- descriptionDone="directory created",
- commands=[
- util.ShellArg(command=["mkdir", "-p", "merchant/doc/doxygen/"]),
- util.ShellArg(command=["cp", "exchange/doc/doxygen/taler-exchange.tag", "merchant/doc/doxygen/taler-exchange.tag"]),
- ],
- workdir="/home/codespell/sources/"
- )
-)
-CODESPELL_FACTORY.addStep(
- ShellCommand(
- name="doxygen::merchant",
- description="checking for doxygen mistakes in merchant",
- descriptionDone="doxygen on merchant finished",
- command=["/home/codespell/deployment/buildbot/doxygen.sh", "taler.doxy" ],
- workdir="/home/codespell/sources/merchant/doc/doxygen"
- )
-)
-
-BUILDERS.append(util.BuilderConfig(
- name="codespell-builder",
- workernames=["codespell-worker"],
- factory=CODESPELL_FACTORY
-))
-
-EMAIL_ALERTS.append("codespell-builder")
-
-CODECHANGE_TRIGGERS.append("codespell-builder")
-
-
################ 11: 'demo checks' JOB ###################################
# This worker is not longer in use - March 10, 2023 - @javisep