| 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 'Headless Linux (dbg)', | 130 'Headless Linux (dbg)', |
| 131 'Site Isolation Linux', | 131 'Site Isolation Linux', |
| 132 'Site Isolation Win', | 132 'Site Isolation Win', |
| 133 'Browser Side Navigation Linux', | 133 'Browser Side Navigation Linux', |
| 134 'Closure Compilation Linux', | 134 'Closure Compilation Linux', |
| 135 'CFI Linux', | 135 'CFI Linux', |
| 136 'CFI Linux ToT', | 136 'CFI Linux ToT', |
| 137 'CFI Linux CF', | 137 'CFI Linux CF', |
| 138 'LTO Linux Perf', | 138 'LTO Linux Perf', |
| 139 'UBSanVptr Linux', | 139 'UBSanVptr Linux', |
| 140 'Chromium Win 10', | 140 'Win 10 Fast Ring', |
| 141 'Libfuzzer Upload Linux ASan', | 141 'Libfuzzer Upload Linux ASan', |
| 142 'Libfuzzer Upload Linux MSan', | 142 'Libfuzzer Upload Linux MSan', |
| 143 'Libfuzzer Upload Linux UBSan', | 143 'Libfuzzer Upload Linux UBSan', |
| 144 'MD Top Chrome ChromeOS non-material', | 144 'MD Top Chrome ChromeOS non-material', |
| 145 'MD Top Chrome ChromeOS material-hybrid', | 145 'MD Top Chrome ChromeOS material-hybrid', |
| 146 'MD Top Chrome Win material', | 146 'MD Top Chrome Win material', |
| 147 'MD Top Chrome Linux material', | 147 'MD Top Chrome Linux material', |
| 148 'WebKit Linux - TraceWrappables', | 148 'WebKit Linux - TraceWrappables', |
| 149 'Linux Kitchen (kitchen_run)', | 149 'Linux Kitchen (kitchen_run)', |
| 150 'Linux Kitchen (annotated_run)', | 150 'Linux Kitchen (annotated_run)', |
| (...skipping 937 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1088 } | 1088 } |
| 1089 | 1089 |
| 1090 b_chromium_ubsan_vptr_linux = { | 1090 b_chromium_ubsan_vptr_linux = { |
| 1091 'name': 'UBSanVptr Linux', | 1091 'name': 'UBSanVptr Linux', |
| 1092 'factory': m_annotator.BaseFactory('chromium', | 1092 'factory': m_annotator.BaseFactory('chromium', |
| 1093 timeout=6000), | 1093 timeout=6000), |
| 1094 'category': 'chromium_cfi', | 1094 'category': 'chromium_cfi', |
| 1095 'auto_reboot': True, | 1095 'auto_reboot': True, |
| 1096 } | 1096 } |
| 1097 | 1097 |
| 1098 b_chromium_win10 = { | 1098 b_win_10_fast_ring = { |
| 1099 'name': 'Chromium Win 10', | 1099 'name': 'Win 10 Fast Ring', |
| 1100 'factory': m_annotator.BaseFactory('chromium'), | 1100 'factory': m_annotator.BaseFactory('chromium'), |
| 1101 'category': 'win10', | 1101 'category': 'win10', |
| 1102 'auto_reboot': True, | 1102 'auto_reboot': True, |
| 1103 } | 1103 } |
| 1104 | 1104 |
| 1105 b_chromium_md_top_chrome_chromeos_non_material = { | 1105 b_chromium_md_top_chrome_chromeos_non_material = { |
| 1106 'name': 'MD Top Chrome ChromeOS non-material', | 1106 'name': 'MD Top Chrome ChromeOS non-material', |
| 1107 'factory': m_annotator.BaseFactory('chromium'), | 1107 'factory': m_annotator.BaseFactory('chromium'), |
| 1108 'category': 'md top chrome', | 1108 'category': 'md top chrome', |
| 1109 'auto_reboot': True, | 1109 'auto_reboot': True, |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1286 b_chromium_cfi_linux, | 1286 b_chromium_cfi_linux, |
| 1287 b_chromium_cfi_linux_tot, | 1287 b_chromium_cfi_linux_tot, |
| 1288 b_chromium_cfi_linux_cf, | 1288 b_chromium_cfi_linux_cf, |
| 1289 | 1289 |
| 1290 # LTO | 1290 # LTO |
| 1291 b_chromium_lto_linux_perf, | 1291 b_chromium_lto_linux_perf, |
| 1292 | 1292 |
| 1293 # UBSan Vptr | 1293 # UBSan Vptr |
| 1294 b_chromium_ubsan_vptr_linux, | 1294 b_chromium_ubsan_vptr_linux, |
| 1295 | 1295 |
| 1296 # Windows 10. | 1296 # Windows 10 Fast Ring (early releases of Win 10). |
| 1297 b_chromium_win10, | 1297 b_win_10_fast_ring, |
| 1298 | 1298 |
| 1299 # Material Design in the browser's top chrome. | 1299 # Material Design in the browser's top chrome. |
| 1300 b_chromium_md_top_chrome_chromeos_non_material, | 1300 b_chromium_md_top_chrome_chromeos_non_material, |
| 1301 b_chromium_md_top_chrome_chromeos_material_hybrid, | 1301 b_chromium_md_top_chrome_chromeos_material_hybrid, |
| 1302 b_chromium_md_top_chrome_win_material, | 1302 b_chromium_md_top_chrome_win_material, |
| 1303 b_chromium_md_top_chrome_linux_material, | 1303 b_chromium_md_top_chrome_linux_material, |
| 1304 | 1304 |
| 1305 # Webkit Linux with TraceWrappables feature on. | 1305 # Webkit Linux with TraceWrappables feature on. |
| 1306 b_chromium_linux_webkit_trace_wrappables, | 1306 b_chromium_linux_webkit_trace_wrappables, |
| 1307 ] | 1307 ] |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1429 builders=['Chromium Win PGO Builder'])) | 1429 builders=['Chromium Win PGO Builder'])) |
| 1430 | 1430 |
| 1431 c['status'].append(MailNotifier( | 1431 c['status'].append(MailNotifier( |
| 1432 fromaddr=ActiveMaster.from_address, # Reply-To address | 1432 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1433 mode='failing', | 1433 mode='failing', |
| 1434 relayhost=config.Master.smtp, | 1434 relayhost=config.Master.smtp, |
| 1435 subject='Build failure on %(builder)s', | 1435 subject='Build failure on %(builder)s', |
| 1436 extraRecipients=['sbc@chromium.org'], | 1436 extraRecipients=['sbc@chromium.org'], |
| 1437 sendToInterestedUsers=False, | 1437 sendToInterestedUsers=False, |
| 1438 builders=['Linux ARM'])) | 1438 builders=['Linux ARM'])) |
| OLD | NEW |