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

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

Issue 1986553002: Add 'Linux LTO' buildbot (recipes part). (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: unique build dir Created 4 years, 7 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.scheduler import Dependent 7 from buildbot.scheduler import Dependent
8 from buildbot.scheduler import Nightly 8 from buildbot.scheduler import Nightly
9 from buildbot.scheduler import Periodic 9 from buildbot.scheduler import Periodic
10 from buildbot.scheduler import Scheduler 10 from buildbot.scheduler import Scheduler
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'Linux ARM', 121 'Linux ARM',
122 'Linux V8 API Stability', 122 'Linux V8 API Stability',
123 'Headless Linux (dbg)', 123 'Headless Linux (dbg)',
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 ToT', 129 'CFI Linux ToT',
130 'CFI Linux CF', 130 'CFI Linux CF',
131 'LTO Linux',
131 'LTO Linux Perf', 132 'LTO Linux Perf',
132 'UBSanVptr Linux', 133 'UBSanVptr Linux',
133 'Win 10 Fast Ring', 134 'Win 10 Fast Ring',
134 'Libfuzzer Upload Linux ASan', 135 'Libfuzzer Upload Linux ASan',
135 'Libfuzzer Upload Linux ASan Debug', 136 'Libfuzzer Upload Linux ASan Debug',
136 'Libfuzzer Upload Linux MSan', 137 'Libfuzzer Upload Linux MSan',
137 'Libfuzzer Upload Linux UBSan', 138 'Libfuzzer Upload Linux UBSan',
138 'MD Top Chrome ChromeOS non-material', 139 'MD Top Chrome ChromeOS non-material',
139 'MD Top Chrome ChromeOS material-hybrid', 140 'MD Top Chrome ChromeOS material-hybrid',
140 'MD Top Chrome Win material', 141 'MD Top Chrome Win material',
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
1021 'auto_reboot': True, 1022 'auto_reboot': True,
1022 } 1023 }
1023 1024
1024 b_chromium_cfi_linux_cf = { 1025 b_chromium_cfi_linux_cf = {
1025 'name': 'CFI Linux CF', 1026 'name': 'CFI Linux CF',
1026 'factory': F_RECIPE_MISC, 1027 'factory': F_RECIPE_MISC,
1027 'category': 'chromium_cfi', 1028 'category': 'chromium_cfi',
1028 'auto_reboot': True, 1029 'auto_reboot': True,
1029 } 1030 }
1030 1031
1032 b_chromium_lto_linux = {
1033 'name': 'LTO Linux',
1034 'factory': m_annotator.BaseFactory('chromium',
1035 timeout=12000),
1036 'builddir': 'google-chrome-lto-linux_64',
1037 'category': 'chromium_cfi',
1038 'auto_reboot': True,
1039 }
1040
1031 b_chromium_lto_linux_perf = { 1041 b_chromium_lto_linux_perf = {
1032 'name': 'LTO Linux Perf', 1042 'name': 'LTO Linux Perf',
1033 'factory': m_annotator.BaseFactory('chromium', 1043 'factory': m_annotator.BaseFactory('chromium',
1034 timeout=12000), 1044 timeout=12000),
1035 'builddir': 'google-chrome-lto-linux_64', 1045 'builddir': 'google-chrome-lto-perf-linux_64',
1036 'category': 'chromium_cfi', 1046 'category': 'chromium_cfi',
1037 'auto_reboot': True, 1047 'auto_reboot': True,
1038 } 1048 }
1039 1049
1040 b_chromium_ubsan_vptr_linux = { 1050 b_chromium_ubsan_vptr_linux = {
1041 'name': 'UBSanVptr Linux', 1051 'name': 'UBSanVptr Linux',
1042 'factory': m_annotator.BaseFactory('chromium', 1052 'factory': m_annotator.BaseFactory('chromium',
1043 timeout=6000), 1053 timeout=6000),
1044 'category': 'chromium_cfi', 1054 'category': 'chromium_cfi',
1045 'auto_reboot': True, 1055 'auto_reboot': True,
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
1239 b_chromium_win_clang_asan_shared_tester, 1249 b_chromium_win_clang_asan_shared_tester,
1240 b_chromium_win_clang_asan_coverage, 1250 b_chromium_win_clang_asan_coverage,
1241 b_chromium_win_clang_asan_coverage_tester, 1251 b_chromium_win_clang_asan_coverage_tester,
1242 1252
1243 # Control flow integrity. 1253 # Control flow integrity.
1244 b_chromium_cfi_linux, 1254 b_chromium_cfi_linux,
1245 b_chromium_cfi_linux_tot, 1255 b_chromium_cfi_linux_tot,
1246 b_chromium_cfi_linux_cf, 1256 b_chromium_cfi_linux_cf,
1247 1257
1248 # LTO 1258 # LTO
1259 b_chromium_lto_linux,
1249 b_chromium_lto_linux_perf, 1260 b_chromium_lto_linux_perf,
1250 1261
1251 # UBSan Vptr 1262 # UBSan Vptr
1252 b_chromium_ubsan_vptr_linux, 1263 b_chromium_ubsan_vptr_linux,
1253 1264
1254 # Windows 10 Fast Ring (early releases of Win 10). 1265 # Windows 10 Fast Ring (early releases of Win 10).
1255 b_win_10_fast_ring, 1266 b_win_10_fast_ring,
1256 1267
1257 # Material Design in the browser's top chrome. 1268 # Material Design in the browser's top chrome.
1258 b_chromium_md_top_chrome_chromeos_non_material, 1269 b_chromium_md_top_chrome_chromeos_non_material,
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 builders=['Chromium Win PGO Builder'])) 1401 builders=['Chromium Win PGO Builder']))
1391 1402
1392 c['status'].append(MailNotifier( 1403 c['status'].append(MailNotifier(
1393 fromaddr=ActiveMaster.from_address, # Reply-To address 1404 fromaddr=ActiveMaster.from_address, # Reply-To address
1394 mode='failing', 1405 mode='failing',
1395 relayhost=config.Master.smtp, 1406 relayhost=config.Master.smtp,
1396 subject='Build failure on %(builder)s', 1407 subject='Build failure on %(builder)s',
1397 extraRecipients=['sbc@chromium.org'], 1408 extraRecipients=['sbc@chromium.org'],
1398 sendToInterestedUsers=False, 1409 sendToInterestedUsers=False,
1399 builders=['Linux ARM'])) 1410 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