Home | History | Annotate | Download | only in webkit
      1 from buildbot.status import html, mail, words
      2 
      3 web = html.WebStatus(http_port=8010)
      4 
      5 allBuildsEmail = mail.MailNotifier(fromaddr="buildbot (at] webkit.org",
      6                                     extraRecipients=["mark+webkit-builds (at] bdash.net.nz"],
      7                                     sendToInterestedUsers=False)
      8 breakageEmail = mail.MailNotifier(fromaddr="buildbot (at] webkit.org",
      9                                   lookup=mail.Domain("webkit.org"),
     10                                   mode="failing")
     11 
     12 IRC = words.IRC(host="irc.freenode.net",
     13                 nick="webkit-build",
     14                 channels=["#webkit-build"],
     15 #                announceAllBuilds=True
     16                 )
     17 
     18 def getStatusListeners():
     19     return [web, allBuildsEmail, IRC]
     20