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

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

Issue 1409753006: Add CFI Linux ToT builder. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 years, 1 month 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 'Linux Trusty', 138 'Linux Trusty',
139 'Linux Trusty (32)', 139 'Linux Trusty (32)',
140 'Linux Trusty (dbg)', 140 'Linux Trusty (dbg)',
141 'Linux Trusty (dbg)(32)', 141 'Linux Trusty (dbg)(32)',
142 'Linux V8 API Stability', 142 'Linux V8 API Stability',
143 'Site Isolation Linux', 143 'Site Isolation Linux',
144 'Site Isolation Win', 144 'Site Isolation Win',
145 'Browser Side Navigation Linux', 145 'Browser Side Navigation Linux',
146 'Closure Compilation Linux', 146 'Closure Compilation Linux',
147 'CFI Linux', 147 'CFI Linux',
148 'CFI Linux ToT',
148 'CFI Linux CF', 149 'CFI Linux CF',
149 'Chromium Win 10', 150 'Chromium Win 10',
150 'Libfuzzer Upload Linux', 151 'Libfuzzer Upload Linux',
151 ]) 152 ])
152 153
153 # Triggerable scheduler for Windows Release. 154 # Triggerable scheduler for Windows Release.
154 s_chromium_win_rel = Triggerable( 155 s_chromium_win_rel = Triggerable(
155 name='win_rel', 156 name='win_rel',
156 builderNames=['Chromium Win MiniInstaller Tests', 157 builderNames=['Chromium Win MiniInstaller Tests',
157 'Win8 Tests (1)', 158 'Win8 Tests (1)',
(...skipping 1435 matching lines...) Expand 10 before | Expand all | Expand 10 after
1593 } 1594 }
1594 1595
1595 b_chromium_cfi_linux = { 1596 b_chromium_cfi_linux = {
1596 'name': 'CFI Linux', 1597 'name': 'CFI Linux',
1597 'factory': m_annotator.BaseFactory('chromium', 1598 'factory': m_annotator.BaseFactory('chromium',
1598 timeout=12000), 1599 timeout=12000),
1599 'category': 'chromium_cfi', 1600 'category': 'chromium_cfi',
1600 'auto_reboot': True, 1601 'auto_reboot': True,
1601 } 1602 }
1602 1603
1604 b_chromium_cfi_linux_tot = {
1605 'name': 'CFI Linux ToT',
1606 'factory': m_annotator.BaseFactory('chromium',
1607 timeout=12000),
1608 'category': 'chromium_cfi',
Nico 2015/11/05 02:11:07 If it's not in "clang tot", Hans and I won't look
pcc1 2015/11/05 02:40:33 Changed category.
1609 'auto_reboot': True,
1610 }
1611
1603 b_chromium_cfi_linux_cf = { 1612 b_chromium_cfi_linux_cf = {
1604 'name': 'CFI Linux CF', 1613 'name': 'CFI Linux CF',
1605 'factory': linux().ChromiumFactory( 1614 'factory': linux().ChromiumFactory(
1606 compile_timeout=12000, 1615 compile_timeout=12000,
1607 clobber=True, 1616 clobber=True,
1608 target='Release', 1617 target='Release',
1609 options=['chromium_builder_asan'], 1618 options=['chromium_builder_asan'],
1610 factory_properties={ 1619 factory_properties={
1611 'cf_archive_build': ActiveMaster.is_production_host, 1620 'cf_archive_build': ActiveMaster.is_production_host,
1612 'cf_archive_name': 'cfi', 1621 'cf_archive_name': 'cfi',
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
1799 b_chromium_win_clang_lld64_dbg_tester, 1808 b_chromium_win_clang_lld64_dbg_tester,
1800 b_chromium_win_clang_asan, 1809 b_chromium_win_clang_asan,
1801 b_chromium_win_clang_asan_tester, 1810 b_chromium_win_clang_asan_tester,
1802 b_chromium_win_clang_asan_shared, 1811 b_chromium_win_clang_asan_shared,
1803 b_chromium_win_clang_asan_shared_tester, 1812 b_chromium_win_clang_asan_shared_tester,
1804 b_chromium_win_clang_asan_coverage, 1813 b_chromium_win_clang_asan_coverage,
1805 b_chromium_win_clang_asan_coverage_tester, 1814 b_chromium_win_clang_asan_coverage_tester,
1806 1815
1807 # Control flow integrity. 1816 # Control flow integrity.
1808 b_chromium_cfi_linux, 1817 b_chromium_cfi_linux,
1818 b_chromium_cfi_linux_tot,
1809 b_chromium_cfi_linux_cf, 1819 b_chromium_cfi_linux_cf,
1810 1820
1811 # Windows 10. 1821 # Windows 10.
1812 b_chromium_win10, 1822 b_chromium_win10,
1813 ] 1823 ]
1814 1824
1815 # DrMemory test bots 1825 # DrMemory test bots
1816 b_win_drmemory = [ 1826 b_win_drmemory = [
1817 b_chromium_windows_drmemory_builder, 1827 b_chromium_windows_drmemory_builder,
1818 b_chromium_rel_win_drmemory_xp, 1828 b_chromium_rel_win_drmemory_xp,
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1923 fromaddr=ActiveMaster.from_address, # Reply-To address 1933 fromaddr=ActiveMaster.from_address, # Reply-To address
1924 mode='failing', 1934 mode='failing',
1925 relayhost=config.Master.smtp, 1935 relayhost=config.Master.smtp,
1926 subject='Build failure on %(builder)s', 1936 subject='Build failure on %(builder)s',
1927 extraRecipients=[ 1937 extraRecipients=[
1928 'sebmarchand+pgofailure@google.com', 1938 'sebmarchand+pgofailure@google.com',
1929 'scottmg+pgofailure@google.com' 1939 'scottmg+pgofailure@google.com'
1930 ], 1940 ],
1931 sendToInterestedUsers=False, 1941 sendToInterestedUsers=False,
1932 builders=['Chromium Win PGO Builder'])) 1942 builders=['Chromium Win PGO Builder']))
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