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

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

Issue 2293803004: Infra setup for Hoverboard test slave (Closed)
Patch Set: Added recipes.py output, fixed comma 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 'Windows deterministic', 154 'Windows deterministic',
155 'Windows Clang deterministic', 155 'Windows Clang deterministic',
156 ]) 156 ])
157 157
158 # Triggerable scheduler for Android Builder 158 # Triggerable scheduler for Android Builder
159 s_chromium_android_dbg = Triggerable( 159 s_chromium_android_dbg = Triggerable(
160 name='android_dbg', 160 name='android_dbg',
161 builderNames=['Android ChromeDriver Tests (dbg)', 161 builderNames=['Android ChromeDriver Tests (dbg)',
162 'Android Tests (trial)(dbg)', 162 'Android Tests (trial)(dbg)',
163 'Android Tests (x86 emulator)', 163 'Android Tests (x86 emulator)',
164 'Android Remoting Tests',]) 164 'Android Remoting Tests',
165 'Android VR Tests',])
165 166
166 s_android_find_annotated_test = Nightly( 167 s_android_find_annotated_test = Nightly(
167 name='android_find_annotated_test', 168 name='android_find_annotated_test',
168 branch='master', 169 branch='master',
169 minute=0, 170 minute=0,
170 hour=range(0,24,3), 171 hour=range(0,24,3),
171 builderNames=['Android Find Annotated Test']) 172 builderNames=['Android Find Annotated Test'])
172 173
173 # Triggerable schedulers for clang/win bots 174 # Triggerable schedulers for clang/win bots
174 s_win_clang = Triggerable( 175 s_win_clang = Triggerable(
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 recipe='chromedriver'), 865 recipe='chromedriver'),
865 'category': 'android_tests', 866 'category': 'android_tests',
866 } 867 }
867 868
868 b_chromium_dbg_android_cloud_tests = { 869 b_chromium_dbg_android_cloud_tests = {
869 'name': 'Android Cloud Tests', 870 'name': 'Android Cloud Tests',
870 'factory': m_remote_run('chromium'), 871 'factory': m_remote_run('chromium'),
871 'category': 'android_tests', 872 'category': 'android_tests',
872 } 873 }
873 874
875 b_chromium_dbg_android_vr_tests = {
876 'name': 'Android VR Tests',
877 'factory': m_remote_run('chromium'),
878 'category': 'android_tests',
879 }
880
874 b_chromium_linux_goma_canary = { 881 b_chromium_linux_goma_canary = {
875 'name': 'Chromium Linux Goma Canary', 882 'name': 'Chromium Linux Goma Canary',
876 'factory': m_remote_run('chromium'), 883 'factory': m_remote_run('chromium'),
877 'category': 'goma', 884 'category': 'goma',
878 'auto_reboot': False, 885 'auto_reboot': False,
879 } 886 }
880 887
881 b_chromium_linux_goma_canary_clobber = { 888 b_chromium_linux_goma_canary_clobber = {
882 'name': 'Chromium Linux Goma Canary (clobber)', 889 'name': 'Chromium Linux Goma Canary (clobber)',
883 'factory': m_remote_run('chromium'), 890 'factory': m_remote_run('chromium'),
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
1242 # Linux ARM 1249 # Linux ARM
1243 b_linux_arm, 1250 b_linux_arm,
1244 1251
1245 # Android 1252 # Android
1246 b_chromium_dbg_android_builder, 1253 b_chromium_dbg_android_builder,
1247 b_chromium_dbg_android_tests_trial, 1254 b_chromium_dbg_android_tests_trial,
1248 b_chromium_dbg_android_emulator_builder_tests, 1255 b_chromium_dbg_android_emulator_builder_tests,
1249 b_chromium_rel_android_remoting_tests, 1256 b_chromium_rel_android_remoting_tests,
1250 b_chromium_rel_android_find_annotated_test, 1257 b_chromium_rel_android_find_annotated_test,
1251 b_chromium_dbg_android_cloud_tests, 1258 b_chromium_dbg_android_cloud_tests,
1259 b_chromium_dbg_android_vr_tests,
1252 1260
1253 b_chromium_dbg_android_chromedriver_tests, 1261 b_chromium_dbg_android_chromedriver_tests,
1254 1262
1255 # Sanitizers 1263 # Sanitizers
1256 b_chromium_afl_upload_linux_asan, 1264 b_chromium_afl_upload_linux_asan,
1257 b_chromium_libfuzzer_upload_linux_asan, 1265 b_chromium_libfuzzer_upload_linux_asan,
1258 b_chromium_libfuzzer_upload_linux_asan_debug, 1266 b_chromium_libfuzzer_upload_linux_asan_debug,
1259 b_chromium_libfuzzer_upload_linux_msan, 1267 b_chromium_libfuzzer_upload_linux_msan,
1260 b_chromium_libfuzzer_upload_linux_ubsan, 1268 b_chromium_libfuzzer_upload_linux_ubsan,
1261 b_chromium_libfuzzer_upload_mac_asan, 1269 b_chromium_libfuzzer_upload_mac_asan,
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1450 ])) 1458 ]))
1451 1459
1452 c['status'].append(MailNotifier( 1460 c['status'].append(MailNotifier(
1453 fromaddr=ActiveMaster.from_address, # Reply-To address 1461 fromaddr=ActiveMaster.from_address, # Reply-To address
1454 mode='failing', 1462 mode='failing',
1455 relayhost=config.Master.smtp, 1463 relayhost=config.Master.smtp,
1456 subject='Build failure on %(builder)s', 1464 subject='Build failure on %(builder)s',
1457 extraRecipients=['sbc@chromium.org'], 1465 extraRecipients=['sbc@chromium.org'],
1458 sendToInterestedUsers=False, 1466 sendToInterestedUsers=False,
1459 builders=['Linux ARM'])) 1467 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