Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Unified Diff: masters/master.chromium.lkgr/master.cfg

Issue 1241393002: Add a MailNotifier that notifies chrome-security-sheriff@grotations.appspotmail.com for LKGR builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: address comments Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.lkgr/master.cfg
diff --git a/masters/master.chromium.lkgr/master.cfg b/masters/master.chromium.lkgr/master.cfg
index 52eac099fc6b1c0321cfd15bf7f16c5272edba7a..34e5c38323229330ca9529d7f595c8acdfd8c744 100644
--- a/masters/master.chromium.lkgr/master.cfg
+++ b/masters/master.chromium.lkgr/master.cfg
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+from buildbot.status.mail import MailNotifier
+
from master import master_utils
from master import slaves_list
@@ -46,3 +48,11 @@ master_utils.AutoSetupMaster(c, ActiveMaster,
templates=['../master.chromium/templates'],
tagComparator=c['change_source'][0].comparator,
enable_http_status_push=ActiveMaster.is_production_host)
+
+c['status'].append(MailNotifier(
+ fromaddr=ActiveMaster.from_address,
+ mode='problem',
+ relayhost=config.Master.smtp,
+ subject='LKGR build failure on %(builder)s',
+ extraRecipients=['chrome-security-sheriff@grotations.appspotmail.com'],
+ sendToInterestedUsers=False))
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698