| 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 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 } | 750 } |
| 751 b_clang_tot_mac_asan_tester = { | 751 b_clang_tot_mac_asan_tester = { |
| 752 'name': 'ClangToTMacASan tester', | 752 'name': 'ClangToTMacASan tester', |
| 753 'factory': m_remote_run('chromium'), | 753 'factory': m_remote_run('chromium'), |
| 754 'category': 'clang tot', | 754 'category': 'clang tot', |
| 755 'auto_reboot': True, | 755 'auto_reboot': True, |
| 756 } | 756 } |
| 757 | 757 |
| 758 b_clang_tot_ios = { | 758 b_clang_tot_ios = { |
| 759 'name': 'ClangToTiOS', | 759 'name': 'ClangToTiOS', |
| 760 'factory': annotator_factory.AnnotatorFactory().BaseFactory( | 760 'factory': m_remote_run('ios/unified_builder_tester'), |
| 761 'ios/unified_builder_tester' | |
| 762 ), | |
| 763 'category': 'clang tot', | 761 'category': 'clang tot', |
| 764 'auto_reboot': True, | 762 'auto_reboot': True, |
| 765 } | 763 } |
| 766 | 764 |
| 767 b_clang_tot_win = { | 765 b_clang_tot_win = { |
| 768 'name': 'ClangToTWin', | 766 'name': 'ClangToTWin', |
| 769 'factory': m_remote_run('chromium', triggers=['clang_tot_win']), | 767 'factory': m_remote_run('chromium', triggers=['clang_tot_win']), |
| 770 'category': 'clang tot', | 768 'category': 'clang tot', |
| 771 'auto_reboot': True, | 769 'auto_reboot': True, |
| 772 } | 770 } |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1157 b_chromium_libfuzzer_upload_mac_asan = { | 1155 b_chromium_libfuzzer_upload_mac_asan = { |
| 1158 'name': 'Libfuzzer Upload Mac ASan', | 1156 'name': 'Libfuzzer Upload Mac ASan', |
| 1159 'factory': m_annotator.BaseFactory('chromium_libfuzzer', | 1157 'factory': m_annotator.BaseFactory('chromium_libfuzzer', |
| 1160 timeout=24000), | 1158 timeout=24000), |
| 1161 'category': 'chromium_libfuzzer', | 1159 'category': 'chromium_libfuzzer', |
| 1162 'auto_reboot': True, | 1160 'auto_reboot': True, |
| 1163 } | 1161 } |
| 1164 | 1162 |
| 1165 b_earlgrey_ios = { | 1163 b_earlgrey_ios = { |
| 1166 'name': 'EarlGreyiOS', | 1164 'name': 'EarlGreyiOS', |
| 1167 'factory': annotator_factory.AnnotatorFactory().BaseFactory( | 1165 'factory': m_remote_run('ios/unified_builder_tester'), |
| 1168 'ios/unified_builder_tester' | |
| 1169 ), | |
| 1170 'category': 'earlgrey', | 1166 'category': 'earlgrey', |
| 1171 'auto_reboot': True, | 1167 'auto_reboot': True, |
| 1172 } | 1168 } |
| 1173 | 1169 |
| 1174 b_mojo_chromiumos = { | 1170 b_mojo_chromiumos = { |
| 1175 'name': 'Mojo ChromiumOS', | 1171 'name': 'Mojo ChromiumOS', |
| 1176 'factory': m_remote_run('chromium'), | 1172 'factory': m_remote_run('chromium'), |
| 1177 'category': 'mojo', | 1173 'category': 'mojo', |
| 1178 'auto_reboot': True, | 1174 'auto_reboot': True, |
| 1179 } | 1175 } |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1458 ])) | 1454 ])) |
| 1459 | 1455 |
| 1460 c['status'].append(MailNotifier( | 1456 c['status'].append(MailNotifier( |
| 1461 fromaddr=ActiveMaster.from_address, # Reply-To address | 1457 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1462 mode='failing', | 1458 mode='failing', |
| 1463 relayhost=config.Master.smtp, | 1459 relayhost=config.Master.smtp, |
| 1464 subject='Build failure on %(builder)s', | 1460 subject='Build failure on %(builder)s', |
| 1465 extraRecipients=['sbc@chromium.org'], | 1461 extraRecipients=['sbc@chromium.org'], |
| 1466 sendToInterestedUsers=False, | 1462 sendToInterestedUsers=False, |
| 1467 builders=['Linux ARM'])) | 1463 builders=['Linux ARM'])) |
| OLD | NEW |