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

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

Issue 1139063004: Add Clang ToT builder for iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 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
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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'CrWinClang64(dll)', # not (shared) cause crbug.com/399990 108 'CrWinClang64(dll)', # not (shared) cause crbug.com/399990
109 'CrWinClangLLD', 109 'CrWinClangLLD',
110 'CrWinAsan', 110 'CrWinAsan',
111 'ClangToTLinux', 111 'ClangToTLinux',
112 'ClangToTLinux (dbg)', 112 'ClangToTLinux (dbg)',
113 'ClangToTLinuxASan', 113 'ClangToTLinuxASan',
114 'ClangToTAndroidASan', 114 'ClangToTAndroidASan',
115 'ClangToTMac', 115 'ClangToTMac',
116 'ClangToTMac (dbg)', 116 'ClangToTMac (dbg)',
117 'ClangToTMacASan', 117 'ClangToTMacASan',
118 'ClangToTiOS',
118 'CrWinAsan(dll)', # not (asan/shared) cause crbug.com/399990 119 'CrWinAsan(dll)', # not (asan/shared) cause crbug.com/399990
119 'Chromium Win x64 Clobber', 120 'Chromium Win x64 Clobber',
120 'Chromium Win PGO Builder', 121 'Chromium Win PGO Builder',
121 'Chromium Win x64 PGO Builder', 122 'Chromium Win x64 PGO Builder',
122 'Blink Linux LSan ASan', 123 'Blink Linux LSan ASan',
123 'Windows Builder (DrMemory)', 124 'Windows Builder (DrMemory)',
124 'Windows Builder (DrMemory x64)', 125 'Windows Builder (DrMemory x64)',
125 'Android Builder (dbg)', 126 'Android Builder (dbg)',
126 'Android MIPS Builder (dbg)', 127 'Android MIPS Builder (dbg)',
127 'Android x86 Builder (dbg)', 128 'Android x86 Builder (dbg)',
(...skipping 1120 matching lines...) Expand 10 before | Expand all | Expand 10 after
1248 'category': 'clang tot', 1249 'category': 'clang tot',
1249 'auto_reboot': False, 1250 'auto_reboot': False,
1250 } 1251 }
1251 b_clang_tot_mac_asan_tester = { 1252 b_clang_tot_mac_asan_tester = {
1252 'name': 'ClangToTMacASan tester', 1253 'name': 'ClangToTMacASan tester',
1253 'factory': m_annotator.BaseFactory('chromium'), 1254 'factory': m_annotator.BaseFactory('chromium'),
1254 'category': 'clang tot', 1255 'category': 'clang tot',
1255 'auto_reboot': True, 1256 'auto_reboot': True,
1256 } 1257 }
1257 1258
1259 b_clang_tot_ios = {
1260 'name': 'ClangToTiOS',
1261 'factory': annotator_factory.AnnotatorFactory().BaseFactory(
1262 'ios/unified_builder_tester'
1263 ),
1264 'category': 'clang tot',
1265 'auto_reboot': False,
1266 }
1267
1258 b_chromium_win7_shared_vs2013_dbg = { 1268 b_chromium_win7_shared_vs2013_dbg = {
1259 'name': 'Cr Win VS2013 (dbg)', 1269 'name': 'Cr Win VS2013 (dbg)',
1260 'factory': f_chromium_win_shared_2013_dbg, 1270 'factory': f_chromium_win_shared_2013_dbg,
1261 'category': 'ninja', 1271 'category': 'ninja',
1262 'auto_reboot': False, 1272 'auto_reboot': False,
1263 } 1273 }
1264 1274
1265 b_chromium_win7_shared_vs2013 = { 1275 b_chromium_win7_shared_vs2013 = {
1266 'name': 'Cr Win VS2013', 1276 'name': 'Cr Win VS2013',
1267 'factory': f_chromium_win_shared_2013, 1277 'factory': f_chromium_win_shared_2013,
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
1864 b_clang_tot_linux_tester, 1874 b_clang_tot_linux_tester,
1865 b_clang_tot_linux_dbg, 1875 b_clang_tot_linux_dbg,
1866 b_clang_tot_linux_asan, 1876 b_clang_tot_linux_asan,
1867 b_clang_tot_linux_asan_tester, 1877 b_clang_tot_linux_asan_tester,
1868 b_clang_tot_android_asan, 1878 b_clang_tot_android_asan,
1869 b_clang_tot_mac, 1879 b_clang_tot_mac,
1870 b_clang_tot_mac_tester, 1880 b_clang_tot_mac_tester,
1871 b_clang_tot_mac_dbg, 1881 b_clang_tot_mac_dbg,
1872 b_clang_tot_mac_asan, 1882 b_clang_tot_mac_asan,
1873 b_clang_tot_mac_asan_tester, 1883 b_clang_tot_mac_asan_tester,
1884 b_clang_tot_ios,
1874 1885
1875 # Control flow integrity. 1886 # Control flow integrity.
1876 b_chromium_cfi_linux, 1887 b_chromium_cfi_linux,
1877 ] 1888 ]
1878 1889
1879 # DrMemory test bots 1890 # DrMemory test bots
1880 b_win_drmemory = [ 1891 b_win_drmemory = [
1881 b_chromium_windows_drmemory_builder, 1892 b_chromium_windows_drmemory_builder,
1882 b_chromium_rel_win_drmemory_xp, 1893 b_chromium_rel_win_drmemory_xp,
1883 b_chromium_tests_drmemory, 1894 b_chromium_tests_drmemory,
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
2008 c['status'].append(MailNotifier( 2019 c['status'].append(MailNotifier(
2009 fromaddr=ActiveMaster.from_address, # Reply-To address 2020 fromaddr=ActiveMaster.from_address, # Reply-To address
2010 mode='failing', 2021 mode='failing',
2011 relayhost=config.Master.smtp, 2022 relayhost=config.Master.smtp,
2012 subject='Remoting Android Tests failing on %(builder)s', 2023 subject='Remoting Android Tests failing on %(builder)s',
2013 extraRecipients=[ 2024 extraRecipients=[
2014 'remoting-android-test-results@google.com', 2025 'remoting-android-test-results@google.com',
2015 ], 2026 ],
2016 sendToInterestedUsers=False, 2027 sendToInterestedUsers=False,
2017 builders=['Android Remoting Tests'])) 2028 builders=['Android Remoting Tests']))
OLDNEW
« no previous file with comments | « no previous file | masters/master.chromium.fyi/slaves.cfg » ('j') | scripts/slave/recipe_modules/chromium/chromium_fyi.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698