taler-deployment

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

commit 7cf4f9eecec2da435e3bdb5db81de3b590f345d0
parent 6938c14fc85d49487d0e4d943ed60c725d4fa89e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon, 26 Apr 2021 22:51:03 +0200

work on docbuilder

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -260,21 +260,23 @@ DOC_FACTORY.addStep( ) DOC_FACTORY.addStep( ShellCommand( - name="doxygen::merchant", - description="building merchant doxygen documentation", - descriptionDone="doxygen on merchant finished", + name="doxygen::anastasis", + description="building anastasis doxygen documentation", + descriptionDone="doxygen on anastasis finished", command=["make", "full" ], want_stderr=False, - workdir="../../sources/merchant/doc/doxygen" + workdir="../../sources/anastasis/doc/doxygen" ) ) - DOC_FACTORY.addStep( steps.ShellSequence( name="doxygen::wallet", description="building wallet typescript documentation", descriptionDone="typedoc on taler-wallet-core finished", commands=[ + util.ShellArg(command=["./bootstrap"], logname="bootstrap"), + util.ShellArg(command=["./configure"], logname="configure"), + util.ShellArg(command=["make"], logname="make"), util.ShellArg(command=["pnpm", "install", "-W", "typedoc"], logname="pnpm"), util.ShellArg(command=["./node_modules/typedoc/bin/typedoc", "--out", "dist/typedoc", "--tsconfig", "tsconfig.build.json", "packages/taler-util/src/index.ts", "packages/taler-wallet-cli/src/index.ts", "packages/taler-wallet-android/src/index.ts", "packages/taler-wallet-core/src/index.ts" ], logname="typedoc"), ],