| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 from master.v8.v8_notifier import V8Notifier | 5 from master.v8.v8_notifier import V8Notifier |
| 6 | 6 |
| 7 | 7 |
| 8 def Update(config, active_master, c): | 8 def Update(config, active_master, c): |
| 9 c['status'].extend([ | 9 c['status'].extend([ |
| 10 V8Notifier( | 10 V8Notifier( |
| 11 config, | 11 config, |
| 12 active_master, | 12 active_master, |
| 13 categories_steps={ | 13 categories_steps={ |
| 14 's390': ['runhooks', 'compile', 'Check'], |
| 15 }, |
| 16 extraRecipients=[ |
| 17 'joransiu@ca.ibm.com', |
| 18 'jyan@ca.ibm.com', |
| 19 'michael_dawson@ca.ibm.com', |
| 20 ], |
| 21 ), |
| 22 V8Notifier( |
| 23 config, |
| 24 active_master, |
| 25 categories_steps={ |
| 14 'x87': ['runhooks', 'compile', 'Check'], | 26 'x87': ['runhooks', 'compile', 'Check'], |
| 15 }, | 27 }, |
| 16 extraRecipients=[ | 28 extraRecipients=[ |
| 17 'weiliang.lin@intel.com', | 29 'weiliang.lin@intel.com', |
| 18 'chunyang.dai@intel.com', | 30 'chunyang.dai@intel.com', |
| 19 'zhengxing.li@intel.com', | 31 'zhengxing.li@intel.com', |
| 20 ], | 32 ], |
| 21 ), | 33 ), |
| 22 ]) | 34 ]) |
| OLD | NEW |