| OLD | NEW |
| 1 # vim: ft=python: | 1 # vim: ft=python: |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 from buildbot.changes.filter import ChangeFilter | 6 from buildbot.changes.filter import ChangeFilter |
| 7 from buildbot.scheduler import Dependent | 7 from buildbot.scheduler import Dependent |
| 8 from buildbot.scheduler import Nightly | 8 from buildbot.scheduler import Nightly |
| 9 from buildbot.scheduler import Periodic | 9 from buildbot.scheduler import Periodic |
| 10 from buildbot.scheduler import Scheduler | 10 from buildbot.scheduler import Scheduler |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'Linux Trusty (dbg)', | 133 'Linux Trusty (dbg)', |
| 134 'Linux Trusty (dbg)(32)', | 134 'Linux Trusty (dbg)(32)', |
| 135 'Linux V8 API Stability', | 135 'Linux V8 API Stability', |
| 136 'Site Isolation Linux', | 136 'Site Isolation Linux', |
| 137 'Site Isolation Win', | 137 'Site Isolation Win', |
| 138 'Browser Side Navigation Linux', | 138 'Browser Side Navigation Linux', |
| 139 'Closure Compilation Linux', | 139 'Closure Compilation Linux', |
| 140 'CFI Linux', | 140 'CFI Linux', |
| 141 'CFI Linux ToT', | 141 'CFI Linux ToT', |
| 142 'CFI Linux CF', | 142 'CFI Linux CF', |
| 143 'LTO Linux Perf', |
| 143 'Chromium Win 10', | 144 'Chromium Win 10', |
| 144 'Libfuzzer Upload Linux ASan', | 145 'Libfuzzer Upload Linux ASan', |
| 145 'Libfuzzer Upload Linux MSan', | 146 'Libfuzzer Upload Linux MSan', |
| 146 'MD Top Chrome ChromeOS non-material', | 147 'MD Top Chrome ChromeOS non-material', |
| 147 'MD Top Chrome ChromeOS material-hybrid', | 148 'MD Top Chrome ChromeOS material-hybrid', |
| 148 'MD Top Chrome Win material', | 149 'MD Top Chrome Win material', |
| 149 'MD Top Chrome Linux material', | 150 'MD Top Chrome Linux material', |
| 150 ]) | 151 ]) |
| 151 | 152 |
| 152 # Triggerable scheduler for Windows Release. | 153 # Triggerable scheduler for Windows Release. |
| (...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1538 builders=['Chromium Win PGO Builder'])) | 1539 builders=['Chromium Win PGO Builder'])) |
| 1539 | 1540 |
| 1540 c['status'].append(MailNotifier( | 1541 c['status'].append(MailNotifier( |
| 1541 fromaddr=ActiveMaster.from_address, # Reply-To address | 1542 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1542 mode='failing', | 1543 mode='failing', |
| 1543 relayhost=config.Master.smtp, | 1544 relayhost=config.Master.smtp, |
| 1544 subject='Build failure on %(builder)s', | 1545 subject='Build failure on %(builder)s', |
| 1545 extraRecipients=['sbc@chromium.org'], | 1546 extraRecipients=['sbc@chromium.org'], |
| 1546 sendToInterestedUsers=False, | 1547 sendToInterestedUsers=False, |
| 1547 builders=['Linux ARM'])) | 1548 builders=['Linux ARM'])) |
| OLD | NEW |