Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sbuildbot
diff options
context:
space:
mode:
authorbuild <buildmaster@sugarlabs.org>2009-02-04 15:19:33 (GMT)
committer build <buildmaster@sugarlabs.org>2009-02-04 15:19:33 (GMT)
commit6a4ea738aba4664455a2196454d9e4b077ac3722 (patch)
tree9737d0073d3e19404772b1417a61b951e739c30f /sbuildbot
parent220b57d90956fe7daf09865da4de48c645350909 (diff)
adjust status to send emails only on failure
Diffstat (limited to 'sbuildbot')
-rw-r--r--sbuildbot/master.cfg9
1 files changed, 6 insertions, 3 deletions
diff --git a/sbuildbot/master.cfg b/sbuildbot/master.cfg
index 067034e..731aef6 100644
--- a/sbuildbot/master.cfg
+++ b/sbuildbot/master.cfg
@@ -28,9 +28,12 @@ c['slavePortnum'] = 9070
c['status'] = []
+mailNotify = ['dfarning@sugarlabs.org', 'marcopg@sugarlabs.org']
+
from buildbot.status import mail
c['status'].append(mail.MailNotifier(fromaddr="buildbot@sugarlabs.org",
- extraRecipients=["dfarning@sugarlabs.org"],
+ mode = 'failing',
+ extraRecipients = mailNotify,
sendToInterestedUsers=False))
#
from buildbot.status import words
@@ -69,7 +72,7 @@ c['status'].append(words.IRC(host="irc.freenode.net", nick="buildbot",
# from buildbot HTML pages to your project's home page.
c['projectName'] = "Sugar Labs Buildbot"
-c['projectURL'] = "http://www.sugarlabs.org"
+c['projectURL'] = "http://www.sugarlabs.org/"
# the 'buildbotURL' string should point to the location where the buildbot's
# internal web server (usually the html.Waterfall page) is visible. This
@@ -77,4 +80,4 @@ c['projectURL'] = "http://www.sugarlabs.org"
# with an externally-visible host name which the buildbot cannot figure out
# without some help.
-c['buildbotURL'] = "http://localhost:8080/"
+c['buildbotURL'] = "http://buildbot.sugarlabs.org/"