taler-deployment

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

commit 440a143a2a2ad3b7470ebbba0f9b75a661355850
parent 52be3ea0b36582aed6d8201d19009eb21073f674
Author: Christian Grothoff <christian@grothoff.org>
Date:   Wed, 21 Apr 2021 17:44:42 +0200

add a few more halt on failures

Diffstat:
Mbuildbot/master.cfg | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -646,7 +646,7 @@ LINKCHECKER_FACTORY.addStep( descriptionDone="Results of wget in buildbot logs.", command=["/home/linkchecker/deployment/buildbot/linkchecker.sh"], workdir="/home/linkchecker", - haltOnFailure=True + haltOnFailure=True, ) ) @@ -714,7 +714,8 @@ CODESPELL_FACTORY.addStep( 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" + workdir="../../deployment/buildbot", + haltOnFailure=True, ) ) CODESPELL_FACTORY.addStep( @@ -723,7 +724,8 @@ CODESPELL_FACTORY.addStep( description="fetching latest deployment repositories from git.taler.net", descriptionDone="Taler code base updated", command=["./update-sources.sh", "git://git.taler.net/", "exchange", "merchant", "wallet-core", "sync", "anastasis", "bank", "twister"], - workdir="../../deployment/buildbot" + workdir="../../deployment/buildbot", + haltOnFailure=True, ) ) CODESPELL_FACTORY.addStep(git_step("git://git.taler.net/wallet-core.git"))