summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-04-26 21:39:11 +0200
committerChristian Grothoff <christian@grothoff.org>2021-04-26 21:39:11 +0200
commitd2977df93d167681444ec33bf3a34e04e38720f7 (patch)
tree1fe94dbcbd360393866a84e347f070ed0bf96104 /buildbot
parentbc538c2333e6498b4c7acb2db7890ac1e728d821 (diff)
downloaddeployment-d2977df93d167681444ec33bf3a34e04e38720f7.tar.gz
deployment-d2977df93d167681444ec33bf3a34e04e38720f7.tar.bz2
deployment-d2977df93d167681444ec33bf3a34e04e38720f7.zip
modify docbuilder logic
Diffstat (limited to 'buildbot')
-rw-r--r--buildbot/master.cfg23
1 files changed, 14 insertions, 9 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 52f6efa..e0d8871 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -198,12 +198,16 @@ DOC_FACTORY.addStep(
)
)
DOC_FACTORY.addStep(
- ShellCommand(
- name="gana",
- description="fetch GANA",
- descriptionDone="GANA obtained",
- command=["contrib/gana.sh" ],
- workdir="../../sources/exchange/"
+ steps.ShellSequence(
+ name="prepare exchange",
+ description="Running bootstrap and configure for exchange",
+ descriptionDone="exchange ready for doxygen",
+ commands=[
+ util.ShellArg(command=["./bootstrap"]),
+ util.ShellArg(command=["./configure", "--prefix=$HOME/local/"]),
+ ],
+ workdir="../../sources/exchange/",
+ haltOnFailure=True,
)
)
DOC_FACTORY.addStep(
@@ -221,10 +225,11 @@ DOC_FACTORY.addStep(
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"]),
+ util.ShellArg(command=["./bootstrap"]),
+ util.ShellArg(command=["./configure", "--prefix=$HOME/local/"]),
+ util.ShellArg(command=["cp", "../exchange/doc/doxygen/taler-exchange.tag", "doc/doxygen/taler-exchange.tag"]),
],
- workdir="../../sources/"
+ workdir="../../sources/merchant/"
)
)
DOC_FACTORY.addStep(