taler-deployment

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

commit 99b719a9b6d8535bd05035bf91ca824965ca450f
parent d19f084ee0371fafdf3d88a013384d8b3b8a1a86
Author: Javier Sepulveda <javier.sepulveda@uv.es>
Date:   Tue, 31 Jan 2023 12:04:45 +0100

Restore Buildbot master.cfg - docs.git

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -215,34 +215,49 @@ SCHEDULERS.append(schedulers.SingleBranchScheduler( # Location: /home/docbuilder @ taler.net WORKERS.append(worker.Worker("doc-worker", "doc-pass")) -# DOCS.GIT - GENERATE STEP 1 (create docker image) - javisep DOC_FACTORY = create_factory_with_deployment() DOC_FACTORY.addStep( ShellCommand( - name="build image docs", + name="build docs", description="Building documentation", descriptionDone="Documentation built.", - command=["./build.sh"], - workdir="/home/docbuilder/deployment/docker/docs-build", + command=["./build-docs.sh"], + workdir="../../deployment/buildbot", env={'PATH': "${HOME}/.local/bin:${PATH}"}, haltOnFailure=True ) ) -# DOCS.GIT - GENERATE STEP 2 (execute docker image) - javisep -DOC_FACTORY.addStep( - ShellCommand( - name="run image docs", - description="Building documentation", - descriptionDone="Documentation built.", - command=["./run.sh"], - workdir="/home/docbuilder/deployment/docker/docs-build", - env={'PATH': "${HOME}/.local/bin:${PATH}"}, - haltOnFailure=True - ) -) +# # DOCS.GIT - GENERATE STEP 1 (create docker image) - javisep + +# DOC_FACTORY = create_factory_with_deployment() +# DOC_FACTORY.addStep( +# ShellCommand( +# name="build image docs", +# description="Building documentation", +# descriptionDone="Documentation built.", +# command=["./build.sh"], +# workdir="/home/docbuilder/deployment/docker/docs-build", +# env={'PATH': "${HOME}/.local/bin:${PATH}"}, +# haltOnFailure=True +# ) +# ) + +# # DOCS.GIT - GENERATE STEP 2 (execute docker image) - javisep + +# DOC_FACTORY.addStep( +# ShellCommand( +# name="run image docs", +# description="Building documentation", +# descriptionDone="Documentation built.", +# command=["./run.sh"], +# workdir="/home/docbuilder/deployment/docker/docs-build", +# env={'PATH': "${HOME}/.local/bin:${PATH}"}, +# haltOnFailure=True +# ) +# ) # OTHER STUFF, IN THE SAME WORKER ...