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

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

Issue 2298093005: Remove top chrome material design FYI builders (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 'LTO Linux', 133 'LTO Linux',
134 'LTO Linux Perf', 134 'LTO Linux Perf',
135 'UBSanVptr Linux', 135 'UBSanVptr Linux',
136 'Win 10 Fast Ring', 136 'Win 10 Fast Ring',
137 'Afl Upload Linux ASan', 137 'Afl Upload Linux ASan',
138 'Libfuzzer Upload Linux ASan', 138 'Libfuzzer Upload Linux ASan',
139 'Libfuzzer Upload Linux ASan Debug', 139 'Libfuzzer Upload Linux ASan Debug',
140 'Libfuzzer Upload Linux MSan', 140 'Libfuzzer Upload Linux MSan',
141 'Libfuzzer Upload Linux UBSan', 141 'Libfuzzer Upload Linux UBSan',
142 'Libfuzzer Upload Mac ASan', 142 'Libfuzzer Upload Mac ASan',
143 'MD Top Chrome ChromeOS non-material',
144 'MD Top Chrome ChromeOS material-hybrid',
145 'MD Top Chrome Win material',
146 'MD Top Chrome Linux material',
147 'WebKit Linux - WPTServe', 143 'WebKit Linux - WPTServe',
148 'WebKit Linux - TraceWrappables', 144 'WebKit Linux - TraceWrappables',
149 'WebKit Mac - WPTServe', 145 'WebKit Mac - WPTServe',
150 'WebKit Win - WPTServe', 146 'WebKit Win - WPTServe',
151 'Linux remote_run Builder', 147 'Linux remote_run Builder',
152 'EarlGreyiOS', 148 'EarlGreyiOS',
153 'Mojo ChromiumOS', 149 'Mojo ChromiumOS',
154 'Mojo Windows', 150 'Mojo Windows',
155 'Android deterministic', 151 'Android deterministic',
156 'Linux deterministic', 152 'Linux deterministic',
(...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after
1108 'auto_reboot': True, 1104 'auto_reboot': True,
1109 } 1105 }
1110 1106
1111 b_win_10_fast_ring = { 1107 b_win_10_fast_ring = {
1112 'name': 'Win 10 Fast Ring', 1108 'name': 'Win 10 Fast Ring',
1113 'factory': m_remote_run_chromium_src('chromium'), 1109 'factory': m_remote_run_chromium_src('chromium'),
1114 'category': 'win10', 1110 'category': 'win10',
1115 'auto_reboot': True, 1111 'auto_reboot': True,
1116 } 1112 }
1117 1113
1118 b_chromium_md_top_chrome_chromeos_non_material = {
1119 'name': 'MD Top Chrome ChromeOS non-material',
1120 'factory': m_remote_run_chromium_src('chromium'),
1121 'category': 'md top chrome',
1122 'auto_reboot': True,
1123 }
1124
1125 b_chromium_md_top_chrome_chromeos_material_hybrid = {
1126 'name': 'MD Top Chrome ChromeOS material-hybrid',
1127 'factory': m_remote_run_chromium_src('chromium'),
1128 'category': 'md top chrome',
1129 'auto_reboot': True,
1130 }
1131
1132 b_chromium_md_top_chrome_win_material = {
1133 'name': 'MD Top Chrome Win material',
1134 'factory': m_remote_run_chromium_src('chromium'),
1135 'category': 'md top chrome',
1136 'auto_reboot': True,
1137 }
1138
1139 b_chromium_md_top_chrome_linux_material = {
1140 'name': 'MD Top Chrome Linux material',
1141 'factory': m_remote_run_chromium_src('chromium'),
1142 'category': 'md top chrome',
1143 'auto_reboot': True,
1144 }
1145
1146 b_chromium_afl_upload_linux_asan = { 1114 b_chromium_afl_upload_linux_asan = {
1147 'name': 'Afl Upload Linux ASan', 1115 'name': 'Afl Upload Linux ASan',
1148 'factory': m_annotator.BaseFactory('chromium_afl', 1116 'factory': m_annotator.BaseFactory('chromium_afl',
1149 timeout=24000), 1117 timeout=24000),
1150 'category': 'chromium_afl', 1118 'category': 'chromium_afl',
1151 'auto_reboot': True, 1119 'auto_reboot': True,
1152 } 1120 }
1153 1121
1154 b_chromium_libfuzzer_upload_linux_asan = { 1122 b_chromium_libfuzzer_upload_linux_asan = {
1155 'name': 'Libfuzzer Upload Linux ASan', 1123 'name': 'Libfuzzer Upload Linux ASan',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 1340
1373 # Windows 10 Fast Ring (early releases of Win 10). 1341 # Windows 10 Fast Ring (early releases of Win 10).
1374 b_win_10_fast_ring, 1342 b_win_10_fast_ring,
1375 1343
1376 # WebKit Mac with the wptserve server enabled for web-platform-tests 1344 # WebKit Mac with the wptserve server enabled for web-platform-tests
1377 b_chromium_mac_webkit_wptserve, 1345 b_chromium_mac_webkit_wptserve,
1378 1346
1379 # WebKit Win with the wptserve server enabled for web-platform-tests 1347 # WebKit Win with the wptserve server enabled for web-platform-tests
1380 b_chromium_win_webkit_wptserve, 1348 b_chromium_win_webkit_wptserve,
1381 1349
1382 # Material Design in the browser's top chrome.
1383 b_chromium_md_top_chrome_chromeos_non_material,
1384 b_chromium_md_top_chrome_chromeos_material_hybrid,
1385 b_chromium_md_top_chrome_win_material,
1386 b_chromium_md_top_chrome_linux_material,
1387
1388 # WebKit Linux with the wptserve server enabled for web-platform-tests. 1350 # WebKit Linux with the wptserve server enabled for web-platform-tests.
1389 b_chromium_linux_webkit_wptserve, 1351 b_chromium_linux_webkit_wptserve,
1390 1352
1391 # Webkit Linux with TraceWrappables feature on. 1353 # Webkit Linux with TraceWrappables feature on.
1392 b_chromium_linux_webkit_trace_wrappables, 1354 b_chromium_linux_webkit_trace_wrappables,
1393 1355
1394 # EarlGrey bot 1356 # EarlGrey bot
1395 b_earlgrey_ios, 1357 b_earlgrey_ios,
1396 1358
1397 # Mojo bots. 1359 # Mojo bots.
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
1489 ])) 1451 ]))
1490 1452
1491 c['status'].append(MailNotifier( 1453 c['status'].append(MailNotifier(
1492 fromaddr=ActiveMaster.from_address, # Reply-To address 1454 fromaddr=ActiveMaster.from_address, # Reply-To address
1493 mode='failing', 1455 mode='failing',
1494 relayhost=config.Master.smtp, 1456 relayhost=config.Master.smtp,
1495 subject='Build failure on %(builder)s', 1457 subject='Build failure on %(builder)s',
1496 extraRecipients=['sbc@chromium.org'], 1458 extraRecipients=['sbc@chromium.org'],
1497 sendToInterestedUsers=False, 1459 sendToInterestedUsers=False,
1498 builders=['Linux ARM'])) 1460 builders=['Linux ARM']))
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698