taler-deployment

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

commit 8381c07206a5d9a90f34e5103e96e29cea918bd8
parent eb3c36f4dba9bff47d7756984a4feaa6b163bda3
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Tue, 24 Oct 2017 17:18:20 +0200

kill periodic scheduler for docs

Diffstat:
Mbuildbot/master.cfg | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -47,10 +47,12 @@ c["change_source"] = [allcs] # Configure the Schedulers, which decide how to react to incoming changes. # Re-build documentation periodically -doc_scheduler = schedulers.Periodic( +doc_scheduler = schedulers.SingleBranchScheduler( name="periodic-doc-scheduler", builderNames=["doc-builder"], - periodicBuildTimer=12*60*60) + #FIXME, this way we build components' manuals only if 'api' or 'www' get pushed. + change_filter=util.ChangeFilter(branch="master", project_re="api|www"), + treeStableTimer=None) wallet_scheduler = schedulers.SingleBranchScheduler( name="wallet-scheduler",