| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 'Linux remote_run Builder', | 149 'Linux remote_run Builder', |
| 150 'EarlGreyiOS', | 150 'EarlGreyiOS', |
| 151 'Mojo ChromiumOS', | 151 'Mojo ChromiumOS', |
| 152 'Mojo Windows', | 152 'Mojo Windows', |
| 153 ]) | 153 ]) |
| 154 | 154 |
| 155 # Triggerable scheduler for Android Builder | 155 # Triggerable scheduler for Android Builder |
| 156 s_chromium_android_dbg = Triggerable( | 156 s_chromium_android_dbg = Triggerable( |
| 157 name='android_dbg', | 157 name='android_dbg', |
| 158 builderNames=['Android ChromeDriver Tests (dbg)', | 158 builderNames=['Android ChromeDriver Tests (dbg)', |
| 159 'Android Find Annotated Test', |
| 159 'Android Tests (trial)(dbg)', | 160 'Android Tests (trial)(dbg)', |
| 160 'Android Tests (x86 emulator)', | 161 'Android Tests (x86 emulator)', |
| 161 'Android Remoting Tests',]) | 162 'Android Remoting Tests',]) |
| 162 | 163 |
| 163 s_android_find_annotated_test = Nightly( | 164 s_android_find_annotated_test = Nightly( |
| 164 name='android_find_annotated_test', | 165 name='android_find_annotated_test', |
| 165 branch='master', | 166 branch='master', |
| 166 minute=0, | 167 minute=0, |
| 167 hour=range(0,24,3), | 168 hour=range(0,24,3), |
| 168 builderNames=['Android Find Annotated Test']) | 169 builderNames=['Android Find Annotated Test']) |
| (...skipping 1282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1451 ])) | 1452 ])) |
| 1452 | 1453 |
| 1453 c['status'].append(MailNotifier( | 1454 c['status'].append(MailNotifier( |
| 1454 fromaddr=ActiveMaster.from_address, # Reply-To address | 1455 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1455 mode='failing', | 1456 mode='failing', |
| 1456 relayhost=config.Master.smtp, | 1457 relayhost=config.Master.smtp, |
| 1457 subject='Build failure on %(builder)s', | 1458 subject='Build failure on %(builder)s', |
| 1458 extraRecipients=['sbc@chromium.org'], | 1459 extraRecipients=['sbc@chromium.org'], |
| 1459 sendToInterestedUsers=False, | 1460 sendToInterestedUsers=False, |
| 1460 builders=['Linux ARM'])) | 1461 builders=['Linux ARM'])) |
| OLD | NEW |