summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-04-26 22:16:26 +0200
committerChristian Grothoff <christian@grothoff.org>2021-04-26 22:16:26 +0200
commit1678794109f12656f65393475f2f1dcb9d94186e (patch)
tree196e5e7dd494888be2fabd766434e945fba06354
parentba8b013e08454afd48171583e579aca006a3507f (diff)
downloaddeployment-1678794109f12656f65393475f2f1dcb9d94186e.tar.gz
deployment-1678794109f12656f65393475f2f1dcb9d94186e.tar.bz2
deployment-1678794109f12656f65393475f2f1dcb9d94186e.zip
give cmds names
-rw-r--r--buildbot/master.cfg5
1 files changed, 3 insertions, 2 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index c43f829..b372f18 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -203,8 +203,8 @@ DOC_FACTORY.addStep(
description="Running bootstrap and configure for exchange",
descriptionDone="exchange ready for doxygen",
commands=[
- util.ShellArg(command=["./bootstrap"]),
- util.ShellArg(command=["./configure", "--enable-only-doc"]),
+ util.ShellArg(command=["./bootstrap"], logname='bootstrap'),
+ util.ShellArg(command=["./configure", "--enable-only-doc"], logname='configure'),
],
workdir="../../sources/exchange/",
haltOnFailure=True,
@@ -217,6 +217,7 @@ DOC_FACTORY.addStep(
descriptionDone="doxygen on exchange finished",
command=["make", "full" ],
workdir="../../sources/exchange/doc/doxygen"
+ haltOnFailure=True,
)
)
DOC_FACTORY.addStep(