| 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 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 b_chromium_cfi_linux_tot = { | 1024 b_chromium_cfi_linux_tot = { |
| 1025 'name': 'CFI Linux ToT', | 1025 'name': 'CFI Linux ToT', |
| 1026 'factory': m_annotator.BaseFactory('chromium', | 1026 'factory': m_annotator.BaseFactory('chromium', |
| 1027 timeout=12000), | 1027 timeout=12000), |
| 1028 'category': 'clang tot', | 1028 'category': 'clang tot', |
| 1029 'auto_reboot': True, | 1029 'auto_reboot': True, |
| 1030 } | 1030 } |
| 1031 | 1031 |
| 1032 b_chromium_cfi_linux_cf = { | 1032 b_chromium_cfi_linux_cf = { |
| 1033 'name': 'CFI Linux CF', | 1033 'name': 'CFI Linux CF', |
| 1034 'factory': F_RECIPE_MISC, | 1034 'factory': m_annotator.BaseFactory(recipe='chromium'), |
| 1035 'category': 'chromium_cfi', | 1035 'category': 'chromium_cfi', |
| 1036 'auto_reboot': True, | 1036 'auto_reboot': True, |
| 1037 } | 1037 } |
| 1038 | 1038 |
| 1039 b_chromium_lto_linux = { | 1039 b_chromium_lto_linux = { |
| 1040 'name': 'LTO Linux', | 1040 'name': 'LTO Linux', |
| 1041 'factory': m_annotator.BaseFactory('chromium', | 1041 'factory': m_annotator.BaseFactory('chromium', |
| 1042 timeout=12000), | 1042 timeout=12000), |
| 1043 'builddir': 'google-chrome-lto-linux_64', | 1043 'builddir': 'google-chrome-lto-linux_64', |
| 1044 'category': 'chromium_cfi', | 1044 'category': 'chromium_cfi', |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1411 ])) | 1411 ])) |
| 1412 | 1412 |
| 1413 c['status'].append(MailNotifier( | 1413 c['status'].append(MailNotifier( |
| 1414 fromaddr=ActiveMaster.from_address, # Reply-To address | 1414 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1415 mode='failing', | 1415 mode='failing', |
| 1416 relayhost=config.Master.smtp, | 1416 relayhost=config.Master.smtp, |
| 1417 subject='Build failure on %(builder)s', | 1417 subject='Build failure on %(builder)s', |
| 1418 extraRecipients=['sbc@chromium.org'], | 1418 extraRecipients=['sbc@chromium.org'], |
| 1419 sendToInterestedUsers=False, | 1419 sendToInterestedUsers=False, |
| 1420 builders=['Linux ARM'])) | 1420 builders=['Linux ARM'])) |
| OLD | NEW |