summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg24
1 files changed, 4 insertions, 20 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 2ba4e4e..68761e8 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -266,32 +266,16 @@ SELENIUM_FACTORY.addStep(ShellCommand(
command=["launch_selenium_test"],
env={'PATH': "${HOME}/local/bin:/usr/lib/chromium:${PATH}"}))
-def doc_dispatcher(project):
- switch = {
- "docs-landing": ["./update_doc_landing.sh"],
- "api": ["./update_api.sh"],
- "backoffice": ["./update_doc_backoffice.sh"],
- "www": ["./update_www_and_stage.sh"],
- "bank": ["./update_bank.sh"],
- "merchant": ["./update_doc_merchant.sh"],
- "exchange": ["./update_doc_exchange.sh"],
- "merchant-frontend-examples": ["./update_tutorials.sh"],
- "deployment": ["./update_onboarding.sh"],
- "help": ["echo", "dispatcher", "debug"]
- }
- # Force schedules trigger the default.
- return switch.get(project, "./update_api.sh")
-
DOC_FACTORY = util.BuildFactory()
DOC_FACTORY.addStep(git_step(
"git://git.taler.net/deployment.git"))
DOC_FACTORY.addStep(ShellCommand(
name="build docs",
- description="Building documentation.",
+ description="Building documentation",
descriptionDone="Documentation built.",
- command=util.Transform(doc_dispatcher,
- util.Property("project")),
- workdir="build/taler-build"))
+ command=["./build-docs.sh"],
+ workdir="build/buildbot",
+ haltOnFailure=True))
DEBUG_BUILDER = util.BuilderConfig(
name="debug-builder",