taler-deployment

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

commit 22eeea0d80d6e08407e4dd10fce5615927cf3dad
parent 168e2444b0d00d7f830f542e2e501ad464537a68
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 22 Jul 2020 23:20:30 +0200

enable actual codespell build step

Diffstat:
Mbuildbot/master.cfg | 10+++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -717,7 +717,15 @@ CODESPELL_FACTORY.addStep( ) ) CODESPELL_FACTORY.addStep(git_step("git://git.taler.net/wallet-core.git")) - +CODESPELL_FACTORY.addStep( + ShellCommand( + name="codespell", + description="spell checking repositories", + descriptionDone="Spell check complete", + command=["/home/codespell/.local/bin/codespell", "-S", "*.bib,*.png,*/afl-tests/*,*/.git/**,*.pdf,*.epub", "anastasis", "bank", "exchange", "gnunet", "libmicrohttpd", "merchant", "sync", "twister", "wallet-core"], + workdir="/home/codespell" + ) +) LCOV_FACTORY = create_factory_with_deployment()