| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 'UBSanVptr Linux', | 138 'UBSanVptr Linux', |
| 139 'Win 10 Fast Ring', | 139 'Win 10 Fast Ring', |
| 140 'Afl Upload Linux ASan', | 140 'Afl Upload Linux ASan', |
| 141 'Libfuzzer Upload Linux ASan', | 141 'Libfuzzer Upload Linux ASan', |
| 142 'Libfuzzer Upload Linux ASan Debug', | 142 'Libfuzzer Upload Linux ASan Debug', |
| 143 'Libfuzzer Upload Linux MSan', | 143 'Libfuzzer Upload Linux MSan', |
| 144 'Libfuzzer Upload Linux UBSan', | 144 'Libfuzzer Upload Linux UBSan', |
| 145 'Libfuzzer Upload Mac ASan', | 145 'Libfuzzer Upload Mac ASan', |
| 146 'WebKit Linux - WPTServe', | 146 'WebKit Linux - WPTServe', |
| 147 'WebKit Linux - TraceWrappables', | 147 'WebKit Linux - TraceWrappables', |
| 148 'WebKit Linux - RandomOrder', | |
| 149 'WebKit Mac - WPTServe', | 148 'WebKit Mac - WPTServe', |
| 150 'WebKit Win - WPTServe', | 149 'WebKit Win - WPTServe', |
| 151 'Linux remote_run Builder', | 150 'Linux remote_run Builder', |
| 152 'EarlGreyiOS', | 151 'EarlGreyiOS', |
| 153 'Mojo ChromiumOS', | 152 'Mojo ChromiumOS', |
| 154 'Mojo Windows', | 153 'Mojo Windows', |
| 155 'Android deterministic', | 154 'Android deterministic', |
| 156 'Linux deterministic', | 155 'Linux deterministic', |
| 157 'Mac deterministic', | 156 'Mac deterministic', |
| 158 'Windows deterministic', | 157 'Windows deterministic', |
| (...skipping 877 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 'name': 'WebKit Win - WPTServe', | 1035 'name': 'WebKit Win - WPTServe', |
| 1037 'factory': m_remote_run_chromium_src('chromium'), | 1036 'factory': m_remote_run_chromium_src('chromium'), |
| 1038 'category': 'win7', | 1037 'category': 'win7', |
| 1039 'auto_reboot': True, | 1038 'auto_reboot': True, |
| 1040 } | 1039 } |
| 1041 b_chromium_linux_webkit_trace_wrappables = { | 1040 b_chromium_linux_webkit_trace_wrappables = { |
| 1042 'name': 'WebKit Linux - TraceWrappables', | 1041 'name': 'WebKit Linux - TraceWrappables', |
| 1043 'factory': m_remote_run_chromium_src('chromium'), | 1042 'factory': m_remote_run_chromium_src('chromium'), |
| 1044 'category': 'linux', | 1043 'category': 'linux', |
| 1045 'auto_reboot': True, | 1044 'auto_reboot': True, |
| 1046 } | |
| 1047 b_chromium_linux_webkit_randomorder = { | |
| 1048 'name': 'WebKit Linux - RandomOrder', | |
| 1049 'factory': m_remote_run_chromium_src('chromium'), | |
| 1050 'category': 'linux', | |
| 1051 'auto_reboot': True, | |
| 1052 } | 1045 } |
| 1053 | 1046 |
| 1054 b_headless_linux = { | 1047 b_headless_linux = { |
| 1055 'name': 'Headless Linux (dbg)', | 1048 'name': 'Headless Linux (dbg)', |
| 1056 'factory': m_remote_run_chromium_src('chromium'), | 1049 'factory': m_remote_run_chromium_src('chromium'), |
| 1057 'category': 'linux', | 1050 'category': 'linux', |
| 1058 } | 1051 } |
| 1059 | 1052 |
| 1060 b_chromium_site_isolation_linux = { | 1053 b_chromium_site_isolation_linux = { |
| 1061 'name': 'Site Isolation Linux', | 1054 'name': 'Site Isolation Linux', |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1409 | 1402 |
| 1410 # WebKit Win with the wptserve server enabled for web-platform-tests | 1403 # WebKit Win with the wptserve server enabled for web-platform-tests |
| 1411 b_chromium_win_webkit_wptserve, | 1404 b_chromium_win_webkit_wptserve, |
| 1412 | 1405 |
| 1413 # WebKit Linux with the wptserve server enabled for web-platform-tests. | 1406 # WebKit Linux with the wptserve server enabled for web-platform-tests. |
| 1414 b_chromium_linux_webkit_wptserve, | 1407 b_chromium_linux_webkit_wptserve, |
| 1415 | 1408 |
| 1416 # Webkit Linux with TraceWrappables feature on. | 1409 # Webkit Linux with TraceWrappables feature on. |
| 1417 b_chromium_linux_webkit_trace_wrappables, | 1410 b_chromium_linux_webkit_trace_wrappables, |
| 1418 | 1411 |
| 1419 # WebKit Linux - layout tests in random order | |
| 1420 b_chromium_linux_webkit_randomorder, | |
| 1421 | |
| 1422 # EarlGrey bot | 1412 # EarlGrey bot |
| 1423 b_earlgrey_ios, | 1413 b_earlgrey_ios, |
| 1424 | 1414 |
| 1425 # Mojo bots. | 1415 # Mojo bots. |
| 1426 b_mojo_chromiumos, | 1416 b_mojo_chromiumos, |
| 1427 b_mojo_windows, | 1417 b_mojo_windows, |
| 1428 | 1418 |
| 1429 # Deterministic build bot | 1419 # Deterministic build bot |
| 1430 b_android_deterministic_build, | 1420 b_android_deterministic_build, |
| 1431 b_linux_deterministic_build, | 1421 b_linux_deterministic_build, |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1523 ])) | 1513 ])) |
| 1524 | 1514 |
| 1525 c['status'].append(MailNotifier( | 1515 c['status'].append(MailNotifier( |
| 1526 fromaddr=ActiveMaster.from_address, # Reply-To address | 1516 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1527 mode='failing', | 1517 mode='failing', |
| 1528 relayhost=config.Master.smtp, | 1518 relayhost=config.Master.smtp, |
| 1529 subject='Build failure on %(builder)s', | 1519 subject='Build failure on %(builder)s', |
| 1530 extraRecipients=['sbc@chromium.org'], | 1520 extraRecipients=['sbc@chromium.org'], |
| 1531 sendToInterestedUsers=False, | 1521 sendToInterestedUsers=False, |
| 1532 builders=['Linux ARM'])) | 1522 builders=['Linux ARM'])) |
| OLD | NEW |