summaryrefslogtreecommitdiffstats
path: root/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/status.py
blob: ad5519e310df1be573bbf3d3c1287421e8ce5a67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from buildbot.status import html, mail, words

web = html.WebStatus(http_port=8010)

allBuildsEmail = mail.MailNotifier(fromaddr="buildbot@webkit.org",
                                    extraRecipients=["mark+webkit-builds@bdash.net.nz"],
                                    sendToInterestedUsers=False)
breakageEmail = mail.MailNotifier(fromaddr="buildbot@webkit.org",
                                  lookup=mail.Domain("webkit.org"),
                                  mode="failing")

IRC = words.IRC(host="irc.freenode.net",
                nick="webkit-build",
                channels=["#webkit-build"],
#                announceAllBuilds=True
                )

def getStatusListeners():
    return [web, allBuildsEmail, breakageEmail, IRC]