gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] branch master updated: modify docbuilder logic


From: gnunet
Subject: [taler-deployment] branch master updated: modify docbuilder logic
Date: Mon, 26 Apr 2021 21:39:13 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new d2977df  modify docbuilder logic
d2977df is described below

commit d2977df93d167681444ec33bf3a34e04e38720f7
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Mon Apr 26 21:39:11 2021 +0200

    modify docbuilder logic
---
 buildbot/master.cfg | 23 ++++++++++++++---------
 1 file 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(

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]