| 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.process.properties import WithProperties | 7 from buildbot.process.properties import WithProperties |
| 8 from buildbot.scheduler import Dependent | 8 from buildbot.scheduler import Dependent |
| 9 from buildbot.scheduler import Nightly | 9 from buildbot.scheduler import Nightly |
| 10 from buildbot.scheduler import Periodic | 10 from buildbot.scheduler import Periodic |
| (...skipping 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 'auto_reboot': True, | 1045 'auto_reboot': True, |
| 1046 } | 1046 } |
| 1047 b_chromium_win_webkit_wptserve = { | 1047 b_chromium_win_webkit_wptserve = { |
| 1048 'name': 'WebKit Win - WPTServe', | 1048 'name': 'WebKit Win - WPTServe', |
| 1049 'factory': m_remote_run('chromium'), | 1049 'factory': m_remote_run('chromium'), |
| 1050 'category': 'win7', | 1050 'category': 'win7', |
| 1051 'auto_reboot': True, | 1051 'auto_reboot': True, |
| 1052 } | 1052 } |
| 1053 b_chromium_linux_webkit_trace_wrappables = { | 1053 b_chromium_linux_webkit_trace_wrappables = { |
| 1054 'name': 'WebKit Linux - TraceWrappables', | 1054 'name': 'WebKit Linux - TraceWrappables', |
| 1055 'factory': m_remote_run('chromium'), | 1055 'factory': m_annotator.BaseFactory('chromium'), |
| 1056 'category': 'linux', | 1056 'category': 'linux', |
| 1057 'auto_reboot': True, | 1057 'auto_reboot': True, |
| 1058 } | 1058 } |
| 1059 b_chromium_linux_webkit_randomorder = { | 1059 b_chromium_linux_webkit_randomorder = { |
| 1060 'name': 'WebKit Linux - RandomOrder', | 1060 'name': 'WebKit Linux - RandomOrder', |
| 1061 'factory': m_remote_run('chromium'), | 1061 'factory': m_remote_run('chromium'), |
| 1062 'category': 'linux', | 1062 'category': 'linux', |
| 1063 'auto_reboot': True, | 1063 'auto_reboot': True, |
| 1064 } | 1064 } |
| 1065 | 1065 |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1569 ])) | 1569 ])) |
| 1570 | 1570 |
| 1571 c['status'].append(MailNotifier( | 1571 c['status'].append(MailNotifier( |
| 1572 fromaddr=ActiveMaster.from_address, # Reply-To address | 1572 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1573 mode='failing', | 1573 mode='failing', |
| 1574 relayhost=config.Master.smtp, | 1574 relayhost=config.Master.smtp, |
| 1575 subject='Build failure on %(builder)s', | 1575 subject='Build failure on %(builder)s', |
| 1576 extraRecipients=['sbc@chromium.org'], | 1576 extraRecipients=['sbc@chromium.org'], |
| 1577 sendToInterestedUsers=False, | 1577 sendToInterestedUsers=False, |
| 1578 builders=['Linux ARM'])) | 1578 builders=['Linux ARM'])) |
| OLD | NEW |