summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2018-03-09 11:20:34 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2018-03-09 11:20:34 +0100
commit8974fc1728c9f9a72d708d9c70a7977652935fdd (patch)
treece5a376500dbbc0c905ba297049fa5c7d15cfd1e /buildbot
parent83a7bd647ae354c2f527715c115702688c20df17 (diff)
downloaddeployment-8974fc1728c9f9a72d708d9c70a7977652935fdd.tar.gz
deployment-8974fc1728c9f9a72d708d9c70a7977652935fdd.tar.bz2
deployment-8974fc1728c9f9a72d708d9c70a7977652935fdd.zip
add nightly scheduler.
Diffstat (limited to 'buildbot')
-rw-r--r--buildbot/master.cfg15
1 files changed, 12 insertions, 3 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index e5c99c1..807ea70 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -69,6 +69,13 @@ def doc_filter(change):
return True
return False
+NIGHTLY_SCHEDULER = schedulers.Nightly(
+ name="nightly-scheduler",
+ builderNames=["lcov-builder"],
+ branch="master", // why mandatory?
+ hour=6,
+ minute=0)
+
DOC_SCHEDULER = schedulers.SingleBranchScheduler(
name="periodic-doc-scheduler",
builderNames=["doc-builder"],
@@ -96,10 +103,11 @@ ALL_SCHEDULER = schedulers.SingleBranchScheduler(
name="all-scheduler",
change_filter=util.ChangeFilter(
branch="master",
- project_re="backoffice|wallet|bank|exchange|merchant|deployment|donations|blog|survey|landing|playground"),
+ project_re="backoffice|wallet|bank|exchange"
+ "merchant|deployment|donations|blog"
+ |survey|landing|playground"),
treeStableTimer=None,
- builderNames=[
- "switcher-builder"])
+ builderNames=["switcher-builder"])
# Scheduler monitoring the help.git repo; a forgotten repo we
# use to test BB.
@@ -132,6 +140,7 @@ FORCE_SCHEDULER = schedulers.ForceScheduler(
"tip-reserve-topper-builder"])
c["schedulers"] = [
+ NIGHTLY_SCHEDULER,
TIP_RESERVE_TOPPER_SCHEDULER,
DOC_SCHEDULER,
WALLET_SCHEDULER,