taler-deployment

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

commit e6a701472728a63a4114aa621b6b4f890f01b016
parent fa660b5e9bd4a157f880a5dd473988306e273ada
Author: Devan Carpenter <devan@taler.net>
Date:   Wed, 17 May 2023 09:04:36 -0500

buildbot: disable wallet doxygen job

wallet job is failing because of outdated version of nodejs installed on
system. we are opting to move this job (along with all the others) into
ephemeral container environments. for now we we disable the job so that
the docs builder doesn't always fail.

Diffstat:
Mbuildbot/master.cfg | 31++++++++++++++++---------------
1 file changed, 16 insertions(+), 15 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -318,21 +318,22 @@ DOC_FACTORY.addStep( workdir="../../sources/merchant/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"), - ], - workdir="../../sources/wallet-core/" - ) -) +## Disabled wallet doxygen job temporarily, until buildbot config refactored +#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"), +# ], +# workdir="../../sources/wallet-core/" +# ) +#) DOC_FACTORY.addStep( steps.ShellSequence( name="prepare challenger",