Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1056)

Side by Side Diff: masters/master.chromium.fyi/master.cfg

Issue 2384243005: Add initial CL for RandomOrder chromium.fyi bot (Closed)
Patch Set: Update build machine based on new bot allocation Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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',
148 'WebKit Mac - WPTServe', 149 'WebKit Mac - WPTServe',
149 'WebKit Win - WPTServe', 150 'WebKit Win - WPTServe',
150 'Linux remote_run Builder', 151 'Linux remote_run Builder',
151 'EarlGreyiOS', 152 'EarlGreyiOS',
152 'Mojo ChromiumOS', 153 'Mojo ChromiumOS',
153 'Mojo Windows', 154 'Mojo Windows',
154 'Android deterministic', 155 'Android deterministic',
155 'Linux deterministic', 156 'Linux deterministic',
156 'Mac deterministic', 157 'Mac deterministic',
157 'Windows deterministic', 158 'Windows deterministic',
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
1036 'factory': m_remote_run_chromium_src('chromium'), 1037 'factory': m_remote_run_chromium_src('chromium'),
1037 'category': 'win7', 1038 'category': 'win7',
1038 'auto_reboot': True, 1039 'auto_reboot': True,
1039 } 1040 }
1040 b_chromium_linux_webkit_trace_wrappables = { 1041 b_chromium_linux_webkit_trace_wrappables = {
1041 'name': 'WebKit Linux - TraceWrappables', 1042 'name': 'WebKit Linux - TraceWrappables',
1042 'factory': m_remote_run_chromium_src('chromium'), 1043 'factory': m_remote_run_chromium_src('chromium'),
1043 'category': 'linux', 1044 'category': 'linux',
1044 'auto_reboot': True, 1045 'auto_reboot': True,
1045 } 1046 }
1047 b_chromium_linux_webkit_randomorder= {
qyearsley 2016/10/07 21:56:58 Nit: space after =
jeffcarp 2016/10/07 23:16:35 Thanks!
1048 'name': 'WebKit Linux - RandomOrder',
1049 'factory': m_remote_run_chromium_src('chromium'),
1050 'category': 'linux',
1051 'auto_reboot': True,
1052 }
1046 1053
1047 b_headless_linux = { 1054 b_headless_linux = {
1048 'name': 'Headless Linux (dbg)', 1055 'name': 'Headless Linux (dbg)',
1049 'factory': m_remote_run_chromium_src('chromium'), 1056 'factory': m_remote_run_chromium_src('chromium'),
1050 'category': 'linux', 1057 'category': 'linux',
1051 } 1058 }
1052 1059
1053 b_chromium_site_isolation_linux = { 1060 b_chromium_site_isolation_linux = {
1054 'name': 'Site Isolation Linux', 1061 'name': 'Site Isolation Linux',
1055 'factory': m_remote_run_chromium_src('chromium'), 1062 'factory': m_remote_run_chromium_src('chromium'),
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
1402 1409
1403 # WebKit Win with the wptserve server enabled for web-platform-tests 1410 # WebKit Win with the wptserve server enabled for web-platform-tests
1404 b_chromium_win_webkit_wptserve, 1411 b_chromium_win_webkit_wptserve,
1405 1412
1406 # WebKit Linux with the wptserve server enabled for web-platform-tests. 1413 # WebKit Linux with the wptserve server enabled for web-platform-tests.
1407 b_chromium_linux_webkit_wptserve, 1414 b_chromium_linux_webkit_wptserve,
1408 1415
1409 # Webkit Linux with TraceWrappables feature on. 1416 # Webkit Linux with TraceWrappables feature on.
1410 b_chromium_linux_webkit_trace_wrappables, 1417 b_chromium_linux_webkit_trace_wrappables,
1411 1418
1419 # WebKit Linux - layout tests in random order
1420 b_chromium_linux_webkit_randomorder,
1421
1412 # EarlGrey bot 1422 # EarlGrey bot
1413 b_earlgrey_ios, 1423 b_earlgrey_ios,
1414 1424
1415 # Mojo bots. 1425 # Mojo bots.
1416 b_mojo_chromiumos, 1426 b_mojo_chromiumos,
1417 b_mojo_windows, 1427 b_mojo_windows,
1418 1428
1419 # Deterministic build bot 1429 # Deterministic build bot
1420 b_android_deterministic_build, 1430 b_android_deterministic_build,
1421 b_linux_deterministic_build, 1431 b_linux_deterministic_build,
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 ])) 1523 ]))
1514 1524
1515 c['status'].append(MailNotifier( 1525 c['status'].append(MailNotifier(
1516 fromaddr=ActiveMaster.from_address, # Reply-To address 1526 fromaddr=ActiveMaster.from_address, # Reply-To address
1517 mode='failing', 1527 mode='failing',
1518 relayhost=config.Master.smtp, 1528 relayhost=config.Master.smtp,
1519 subject='Build failure on %(builder)s', 1529 subject='Build failure on %(builder)s',
1520 extraRecipients=['sbc@chromium.org'], 1530 extraRecipients=['sbc@chromium.org'],
1521 sendToInterestedUsers=False, 1531 sendToInterestedUsers=False,
1522 builders=['Linux ARM'])) 1532 builders=['Linux ARM']))
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | scripts/slave/chromium/layout_test_wrapper.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698