| 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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 'UBSanVptr Linux', | 142 'UBSanVptr Linux', |
| 143 'Win 10 Fast Ring', | 143 'Win 10 Fast Ring', |
| 144 'Afl Upload Linux ASan', | 144 'Afl Upload Linux ASan', |
| 145 'Libfuzzer Upload Linux ASan', | 145 'Libfuzzer Upload Linux ASan', |
| 146 'Libfuzzer Upload Linux ASan Debug', | 146 'Libfuzzer Upload Linux ASan Debug', |
| 147 'Libfuzzer Upload Linux MSan', | 147 'Libfuzzer Upload Linux MSan', |
| 148 'Libfuzzer Upload Linux UBSan', | 148 'Libfuzzer Upload Linux UBSan', |
| 149 'Libfuzzer Upload Mac ASan', | 149 'Libfuzzer Upload Mac ASan', |
| 150 'WebKit Linux - WPTServe', | 150 'WebKit Linux - WPTServe', |
| 151 'WebKit Linux - TraceWrappables', | 151 'WebKit Linux - TraceWrappables', |
| 152 'WebKit Linux - RandomOrder', |
| 152 'WebKit Mac - WPTServe', | 153 'WebKit Mac - WPTServe', |
| 153 'WebKit Win - WPTServe', | 154 'WebKit Win - WPTServe', |
| 154 'Linux remote_run Builder', | 155 'Linux remote_run Builder', |
| 155 'EarlGreyiOS', | 156 'EarlGreyiOS', |
| 156 'GomaCanaryiOS', | 157 'GomaCanaryiOS', |
| 157 'Mojo ChromiumOS', | 158 'Mojo ChromiumOS', |
| 158 'Mojo Windows', | 159 'Mojo Windows', |
| 159 'Android deterministic', | 160 'Android deterministic', |
| 160 'Linux deterministic', | 161 'Linux deterministic', |
| 161 'Mac deterministic', | 162 'Mac deterministic', |
| (...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1062 'factory': m_remote_run_chromium_src('chromium'), | 1063 'factory': m_remote_run_chromium_src('chromium'), |
| 1063 'category': 'win7', | 1064 'category': 'win7', |
| 1064 'auto_reboot': True, | 1065 'auto_reboot': True, |
| 1065 } | 1066 } |
| 1066 b_chromium_linux_webkit_trace_wrappables = { | 1067 b_chromium_linux_webkit_trace_wrappables = { |
| 1067 'name': 'WebKit Linux - TraceWrappables', | 1068 'name': 'WebKit Linux - TraceWrappables', |
| 1068 'factory': m_remote_run_chromium_src('chromium'), | 1069 'factory': m_remote_run_chromium_src('chromium'), |
| 1069 'category': 'linux', | 1070 'category': 'linux', |
| 1070 'auto_reboot': True, | 1071 'auto_reboot': True, |
| 1071 } | 1072 } |
| 1073 b_chromium_linux_webkit_randomorder = { |
| 1074 'name': 'WebKit Linux - RandomOrder', |
| 1075 'factory': m_remote_run_chromium_src('chromium'), |
| 1076 'category': 'linux', |
| 1077 'auto_reboot': True, |
| 1078 } |
| 1072 | 1079 |
| 1073 b_headless_linux = { | 1080 b_headless_linux = { |
| 1074 'name': 'Headless Linux (dbg)', | 1081 'name': 'Headless Linux (dbg)', |
| 1075 'factory': m_remote_run_chromium_src('chromium'), | 1082 'factory': m_remote_run_chromium_src('chromium'), |
| 1076 'category': 'linux', | 1083 'category': 'linux', |
| 1077 } | 1084 } |
| 1078 | 1085 |
| 1079 b_chromium_site_isolation_android = { | 1086 b_chromium_site_isolation_android = { |
| 1080 'name': 'Site Isolation Android', | 1087 'name': 'Site Isolation Android', |
| 1081 'factory': m_remote_run_chromium_src('chromium'), | 1088 'factory': m_remote_run_chromium_src('chromium'), |
| (...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 | 1457 |
| 1451 # WebKit Win with the wptserve server enabled for web-platform-tests | 1458 # WebKit Win with the wptserve server enabled for web-platform-tests |
| 1452 b_chromium_win_webkit_wptserve, | 1459 b_chromium_win_webkit_wptserve, |
| 1453 | 1460 |
| 1454 # WebKit Linux with the wptserve server enabled for web-platform-tests. | 1461 # WebKit Linux with the wptserve server enabled for web-platform-tests. |
| 1455 b_chromium_linux_webkit_wptserve, | 1462 b_chromium_linux_webkit_wptserve, |
| 1456 | 1463 |
| 1457 # Webkit Linux with TraceWrappables feature on. | 1464 # Webkit Linux with TraceWrappables feature on. |
| 1458 b_chromium_linux_webkit_trace_wrappables, | 1465 b_chromium_linux_webkit_trace_wrappables, |
| 1459 | 1466 |
| 1467 # WebKit Linux - layout tests in random order |
| 1468 b_chromium_linux_webkit_randomorder, |
| 1469 |
| 1460 # EarlGrey bot | 1470 # EarlGrey bot |
| 1461 b_earlgrey_ios, | 1471 b_earlgrey_ios, |
| 1462 | 1472 |
| 1463 # Goma canary | 1473 # Goma canary |
| 1464 b_gomacanary_ios, | 1474 b_gomacanary_ios, |
| 1465 | 1475 |
| 1466 # Mojo bots. | 1476 # Mojo bots. |
| 1467 b_mojo_chromiumos, | 1477 b_mojo_chromiumos, |
| 1468 b_mojo_windows, | 1478 b_mojo_windows, |
| 1469 | 1479 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1563 ])) | 1573 ])) |
| 1564 | 1574 |
| 1565 c['status'].append(MailNotifier( | 1575 c['status'].append(MailNotifier( |
| 1566 fromaddr=ActiveMaster.from_address, # Reply-To address | 1576 fromaddr=ActiveMaster.from_address, # Reply-To address |
| 1567 mode='failing', | 1577 mode='failing', |
| 1568 relayhost=config.Master.smtp, | 1578 relayhost=config.Master.smtp, |
| 1569 subject='Build failure on %(builder)s', | 1579 subject='Build failure on %(builder)s', |
| 1570 extraRecipients=['sbc@chromium.org'], | 1580 extraRecipients=['sbc@chromium.org'], |
| 1571 sendToInterestedUsers=False, | 1581 sendToInterestedUsers=False, |
| 1572 builders=['Linux ARM'])) | 1582 builders=['Linux ARM'])) |
| OLD | NEW |