| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 'Site Isolation Linux', | 124 'Site Isolation Linux', |
| 125 'Site Isolation Win', | 125 'Site Isolation Win', |
| 126 'Browser Side Navigation Linux', | 126 'Browser Side Navigation Linux', |
| 127 'Closure Compilation Linux', | 127 'Closure Compilation Linux', |
| 128 'CFI Linux', | 128 'CFI Linux', |
| 129 'CFI Linux Full', | 129 'CFI Linux Full', |
| 130 'CFI Linux ToT', | 130 'CFI Linux ToT', |
| 131 'CFI Linux CF', | 131 'CFI Linux CF', |
| 132 'LTO Linux', | 132 'LTO Linux', |
| 133 'LTO Linux Perf', | 133 'LTO Linux Perf', |
| 134 'ThinLTO Linux ToT', |
| 134 'UBSanVptr Linux', | 135 'UBSanVptr Linux', |
| 135 'Win 10 Fast Ring', | 136 'Win 10 Fast Ring', |
| 136 'Afl Upload Linux ASan', | 137 'Afl Upload Linux ASan', |
| 137 'Libfuzzer Upload Linux ASan', | 138 'Libfuzzer Upload Linux ASan', |
| 138 'Libfuzzer Upload Linux ASan Debug', | 139 'Libfuzzer Upload Linux ASan Debug', |
| 139 'Libfuzzer Upload Linux MSan', | 140 'Libfuzzer Upload Linux MSan', |
| 140 'Libfuzzer Upload Linux UBSan', | 141 'Libfuzzer Upload Linux UBSan', |
| 141 'Libfuzzer Upload Mac ASan', | 142 'Libfuzzer Upload Mac ASan', |
| 142 'WebKit Linux - WPTServe', | 143 'WebKit Linux - WPTServe', |
| 143 'WebKit Linux - TraceWrappables', | 144 'WebKit Linux - TraceWrappables', |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1090 } | 1091 } |
| 1091 | 1092 |
| 1092 b_chromium_lto_linux_perf = { | 1093 b_chromium_lto_linux_perf = { |
| 1093 'name': 'LTO Linux Perf', | 1094 'name': 'LTO Linux Perf', |
| 1094 'factory': m_remote_run_chromium_src('chromium', timeout=12000), | 1095 'factory': m_remote_run_chromium_src('chromium', timeout=12000), |
| 1095 'builddir': 'google-chrome-lto-perf-linux_64', | 1096 'builddir': 'google-chrome-lto-perf-linux_64', |
| 1096 'category': 'chromium_cfi', | 1097 'category': 'chromium_cfi', |
| 1097 'auto_reboot': True, | 1098 'auto_reboot': True, |
| 1098 } | 1099 } |
| 1099 | 1100 |
| 1101 b_chromium_thin_lto_linux_tot = { |
| 1102 'name': 'ThinLTO Linux ToT', |
| 1103 'factory': m_remote_run_chromium_src('chromium', timeout=12000), |
| 1104 'category': 'clang tot', |
| 1105 'auto_reboot': True, |
| 1106 } |
| 1107 |
| 1100 b_chromium_ubsan_vptr_linux = { | 1108 b_chromium_ubsan_vptr_linux = { |
| 1101 'name': 'UBSanVptr Linux', | 1109 'name': 'UBSanVptr Linux', |
| 1102 'factory': m_remote_run_chromium_src('chromium', timeout=6000), | 1110 'factory': m_remote_run_chromium_src('chromium', timeout=6000), |
| 1103 'category': 'chromium_cfi', | 1111 'category': 'chromium_cfi', |
| 1104 'auto_reboot': True, | 1112 'auto_reboot': True, |
| 1105 } | 1113 } |
| 1106 | 1114 |
| 1107 b_win_10_fast_ring = { | 1115 b_win_10_fast_ring = { |
| 1108 'name': 'Win 10 Fast Ring', | 1116 'name': 'Win 10 Fast Ring', |
| 1109 'factory': m_remote_run_chromium_src('chromium'), | 1117 'factory': m_remote_run_chromium_src('chromium'), |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1335 # Control flow integrity. | 1343 # Control flow integrity. |
| 1336 b_chromium_cfi_linux, | 1344 b_chromium_cfi_linux, |
| 1337 b_chromium_cfi_linux_full, | 1345 b_chromium_cfi_linux_full, |
| 1338 b_chromium_cfi_linux_tot, | 1346 b_chromium_cfi_linux_tot, |
| 1339 b_chromium_cfi_linux_cf, | 1347 b_chromium_cfi_linux_cf, |
| 1340 | 1348 |
| 1341 # LTO | 1349 # LTO |
| 1342 b_chromium_lto_linux, | 1350 b_chromium_lto_linux, |
| 1343 b_chromium_lto_linux_perf, | 1351 b_chromium_lto_linux_perf, |
| 1344 | 1352 |
| 1353 # ThinLTO |
| 1354 b_chromium_thin_lto_linux_tot, |
| 1355 |
| 1345 # UBSan Vptr | 1356 # UBSan Vptr |
| 1346 b_chromium_ubsan_vptr_linux, | 1357 b_chromium_ubsan_vptr_linux, |
| 1347 | 1358 |
| 1348 # Windows 10 Fast Ring (early releases of Win 10). | 1359 # Windows 10 Fast Ring (early releases of Win 10). |
| 1349 b_win_10_fast_ring, | 1360 b_win_10_fast_ring, |
| 1350 | 1361 |
| 1351 # WebKit Mac with the wptserve server enabled for web-platform-tests | 1362 # WebKit Mac with the wptserve server enabled for web-platform-tests |
| 1352 b_chromium_mac_webkit_wptserve, | 1363 b_chromium_mac_webkit_wptserve, |
| 1353 | 1364 |
| 1354 # WebKit Win with the wptserve server enabled for web-platform-tests | 1365 # WebKit Win with the wptserve server enabled for web-platform-tests |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1461 ])) | 1472 ])) |
| 1462 | 1473 |
| 1463 c['status'].append(MailNotifier( | 1474 c['status'].append(MailNotifier( |
| 1464 fromaddr=ActiveMaster.from_address, # Reply-To address | 1475 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1465 mode='failing', | 1476 mode='failing', |
| 1466 relayhost=config.Master.smtp, | 1477 relayhost=config.Master.smtp, |
| 1467 subject='Build failure on %(builder)s', | 1478 subject='Build failure on %(builder)s', |
| 1468 extraRecipients=['sbc@chromium.org'], | 1479 extraRecipients=['sbc@chromium.org'], |
| 1469 sendToInterestedUsers=False, | 1480 sendToInterestedUsers=False, |
| 1470 builders=['Linux ARM'])) | 1481 builders=['Linux ARM'])) |
| OLD | NEW |