WebKit Bugzilla
Attachment 372250 Details for
Bug 198919
: [ews-build] Send email notifications for failures
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-198919-20190617123021.patch (text/plain), 1.53 KB, created by
Aakash Jain
on 2019-06-17 09:30:22 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Aakash Jain
Created:
2019-06-17 09:30:22 PDT
Size:
1.53 KB
patch
obsolete
>Index: Tools/ChangeLog >=================================================================== >--- Tools/ChangeLog (revision 246497) >+++ Tools/ChangeLog (working copy) >@@ -1,3 +1,12 @@ >+2019-06-17 Aakash Jain <aakash_jain@apple.com> >+ >+ [ews-build] Send email notifications for failures >+ https://bugs.webkit.org/show_bug.cgi?id=198919 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * BuildSlaveSupport/ews-build/master.cfg: >+ > 2019-06-17 Jonathan Bedard <jbedard@apple.com> > > webkitpy: Add macOS Catalina, iOS 13 >Index: Tools/BuildSlaveSupport/ews-build/master.cfg >=================================================================== >--- Tools/BuildSlaveSupport/ews-build/master.cfg (revision 246497) >+++ Tools/BuildSlaveSupport/ews-build/master.cfg (working copy) >@@ -2,7 +2,7 @@ import os > import socket > import sys > >-from buildbot.plugins import util >+from buildbot.plugins import reporters, util > > import loadConfig > from events import Events >@@ -60,7 +60,14 @@ c['buildbotNetUsageData'] = None > > loadConfig.loadBuilderConfig(c, is_test_mode_enabled=is_test_mode_enabled) > >+mail_notifier = reporters.MailNotifier( >+ fromaddr='ews-build@webkit.org', >+ sendToInterestedUsers=False, >+ extraRecipients=['aakash_jain@webkit.org'], >+ mode=('failing', 'exception'), >+ addPatch=False) >+ > if not is_test_mode_enabled: > hostname = socket.gethostname().strip() > event_reporter = Events(master_hostname=hostname, type_prefix='ews') >- c['services'] = [event_reporter] >+ c['services'] = [event_reporter, mail_notifier]
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 198919
: 372250