taler-deployment

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

commit 92f74458dbca818d9af4844a21daff66e86d9abb
parent d2b4f92f4d9f27288943a377e895ce1a6c1e4fb5
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 22 Oct 2020 10:00:52 +0200

fix job for working directory

Diffstat:
Mbuildbot/master.cfg | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -724,7 +724,7 @@ CODESPELL_FACTORY.addStep( description="cleaning previous doxygen runs", descriptionDone="Doxygen cleaned", command=["rm", "-r", "exchange/doc/doxygen/html/", "merchant/doc/doxygen/html/" ], - workdir="/home/codespell//" + workdir="/home/codespell/sources/" ) ) CODESPELL_FACTORY.addStep( @@ -733,7 +733,7 @@ CODESPELL_FACTORY.addStep( description="spell checking repositories", descriptionDone="Spell check complete", command=["/home/codespell/.local/bin/codespell", "-L", "ifset,openin,fo", "-S", "*.bib,*.bst,*.cls,*.png,*.svg,*.wav,*.gz,*.ecc,*.jpg,*.zkey,*.sqlite,*/contrib/hellos/**,*/vpn/tests/**,*.priv,*.file,*.tgz,*.woff,*.gif,*.odt,*.fee,*.deflate,*.dat,*.jpeg,*.docx,*.ods,*.doc,*.docx,*.xcf,*.xlsx,*.ecc,*.ttf,*.woff2,*.eot,*.ttf,*.eot,*.mp4,*.pptx,*.epgz,*.min.js,*.pack.js,*.po,*.bbl,*/afl-tests/*,*/.git/**,*.pdf,*.epub", "anastasis", "bank", "exchange", "gnunet", "libmicrohttpd", "merchant", "sync", "twister", "wallet-core"], - workdir="/home/codespell" + workdir="/home/codespell/sources/" ) ) @@ -744,7 +744,7 @@ CODESPELL_FACTORY.addStep( description="fetch GANA", descriptionDone="GANA obtained", command=["contrib/gana.sh" ], - workdir="/home/codespell/exchange/" + workdir="/home/codespell/sources/exchange/" ) ) @@ -754,7 +754,7 @@ CODESPELL_FACTORY.addStep( description="checking for doxygen mistakes in exchange", descriptionDone="doxygen on exchange finished", command=["/home/codespell/deployment/buildbot/doxygen.sh", "taler.doxy" ], - workdir="/home/codespell/exchange/doc/doxygen" + workdir="/home/codespell/sources/exchange/doc/doxygen" ) ) @@ -764,7 +764,7 @@ CODESPELL_FACTORY.addStep( description="copying tag file to merchant", descriptionDone="tag file copied", command=["cp", "taler-exchange.tag", "/home/codespell/merchant/doc/doxygen/taler-exchange.tag"], - workdir="/home/codespell/exchange/doc/doxygen" + workdir="/home/codespell/sources/exchange/doc/doxygen" ) ) @@ -774,7 +774,7 @@ CODESPELL_FACTORY.addStep( description="checking for doxygen mistakes in merchant", descriptionDone="doxygen on merchant finished", command=["/home/codespell/deployment/buildbot/doxygen.sh", "taler.doxy" ], - workdir="/home/codespell/merchant/doc/doxygen" + workdir="/home/codespell/sources/merchant/doc/doxygen" ) )