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

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

Issue 725663002: Chromium FYI bot for running Telemetry unit tests on Android user build. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fixed whitespace issues. Created 6 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.scheduler import Dependent 6 from buildbot.scheduler import Dependent
7 from buildbot.scheduler import Nightly 7 from buildbot.scheduler import Nightly
8 from buildbot.scheduler import Periodic 8 from buildbot.scheduler import Periodic
9 from buildbot.scheduler import Scheduler 9 from buildbot.scheduler import Scheduler
10 from buildbot.scheduler import Triggerable 10 from buildbot.scheduler import Triggerable
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 'Vista Tests (dbg)(2)',]) 158 'Vista Tests (dbg)(2)',])
159 159
160 # Triggerable scheduler for Android Builder 160 # Triggerable scheduler for Android Builder
161 s_chromium_android_dbg = Triggerable( 161 s_chromium_android_dbg = Triggerable(
162 name='android_dbg', 162 name='android_dbg',
163 builderNames=['Android Tests (JB GalaxyNexus)(dbg)', 163 builderNames=['Android Tests (JB GalaxyNexus)(dbg)',
164 'Android Tests (ICS GalaxyNexus)(dbg)', 164 'Android Tests (ICS GalaxyNexus)(dbg)',
165 'Android Tests (JB Nexus7)(dbg)', 165 'Android Tests (JB Nexus7)(dbg)',
166 'Android Tests (JB Manta)(dbg)', 166 'Android Tests (JB Manta)(dbg)',
167 'Android ChromeDriver Tests (dbg)', 167 'Android ChromeDriver Tests (dbg)',
168 'Android Tests (K N5)(dbg)']) 168 'Android Tests (K N5)(dbg)',
169 'Android Tests (K N5, user build)(dbg)'])
169 170
170 # Triggerable scheduler for Cronet Builder 171 # Triggerable scheduler for Cronet Builder
171 s_chromium_cronet_rel = Triggerable( 172 s_chromium_cronet_rel = Triggerable(
172 name='cronet_rel', 173 name='cronet_rel',
173 builderNames=['Android Cronet ARMv6 Builder', 174 builderNames=['Android Cronet ARMv6 Builder',
174 'Android Cronet ARM64 Builder', 175 'Android Cronet ARM64 Builder',
175 'Android Cronet x86 Builder', 176 'Android Cronet x86 Builder',
176 'Android Cronet MIPS Builder']) 177 'Android Cronet MIPS Builder'])
177 178
178 # Windows Dr. Memory build-bot list 179 # Windows Dr. Memory build-bot list
(...skipping 934 matching lines...) Expand 10 before | Expand all | Expand 10 after
1113 def f_chromium_dbg_android_tests(bot_id_suffix): 1114 def f_chromium_dbg_android_tests(bot_id_suffix):
1114 return linux_android().ChromiumAnnotationFactory( 1115 return linux_android().ChromiumAnnotationFactory(
1115 target='Debug', 1116 target='Debug',
1116 annotation_script='src/build/android/buildbot/bb_run_bot.py', 1117 annotation_script='src/build/android/buildbot/bb_run_bot.py',
1117 factory_properties={ 1118 factory_properties={
1118 'android_bot_id': 'fyi-tests-dbg-%s' % bot_id_suffix, 1119 'android_bot_id': 'fyi-tests-dbg-%s' % bot_id_suffix,
1119 'build_url': chromium_android_fyi_dbg_archive, 1120 'build_url': chromium_android_fyi_dbg_archive,
1120 'gclient_timeout': 3600 1121 'gclient_timeout': 3600
1121 }) 1122 })
1122 1123
1124 def f_chromium_dbg_android_tests_user_build(bot_id_suffix):
1125 return linux_android().ChromiumAnnotationFactory(
1126 target='Debug',
1127 annotation_script='src/build/android/buildbot/bb_run_bot.py',
1128 factory_properties={
1129 'android_bot_id': 'user-build-fyi-tests-dbg-%s' % bot_id_suffix,
1130 'build_url': chromium_android_fyi_dbg_archive,
1131 'gclient_timeout': 3600
1132 })
1123 1133
1124 f_chromium_dbg_android_chromedriver_tests = \ 1134 f_chromium_dbg_android_chromedriver_tests = \
1125 linux_android( 1135 linux_android(
1126 custom_deps_list=[F.CUSTOM_DEPS_WEBDRIVER_JAVA_TESTS] 1136 custom_deps_list=[F.CUSTOM_DEPS_WEBDRIVER_JAVA_TESTS]
1127 ).ChromiumAnnotationFactory( 1137 ).ChromiumAnnotationFactory(
1128 target='Debug', 1138 target='Debug',
1129 annotation_script='src/build/android/buildbot/bb_run_bot.py', 1139 annotation_script='src/build/android/buildbot/bb_run_bot.py',
1130 factory_properties={ 1140 factory_properties={
1131 'android_bot_id': 'chromedriver-fyi-tests-dbg', 1141 'android_bot_id': 'chromedriver-fyi-tests-dbg',
1132 'build_url': chromium_android_fyi_dbg_archive, 1142 'build_url': chromium_android_fyi_dbg_archive,
(...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after
1716 'factory': f_chromium_dbg_android_tests('jb-n7'), 1726 'factory': f_chromium_dbg_android_tests('jb-n7'),
1717 'category': 'android', 1727 'category': 'android',
1718 } 1728 }
1719 1729
1720 b_chromium_dbg_android_tests_jb_manta = { 1730 b_chromium_dbg_android_tests_jb_manta = {
1721 'name': 'Android Tests (JB Manta)(dbg)', 1731 'name': 'Android Tests (JB Manta)(dbg)',
1722 'factory': f_chromium_dbg_android_tests('jb-manta'), 1732 'factory': f_chromium_dbg_android_tests('jb-manta'),
1723 'category': 'android', 1733 'category': 'android',
1724 } 1734 }
1725 1735
1736 b_chromium_dbg_android_tests_k_n5_user = {
1737 'name': 'Android Tests (K N5, user build)(dbg)',
1738 'factory': f_chromium_dbg_android_tests_user_build('k_n5_user'),
1739 'category': 'android',
1740 }
1741
1726 b_chromium_dbg_android_chromedriver_tests = { 1742 b_chromium_dbg_android_chromedriver_tests = {
1727 'name': 'Android ChromeDriver Tests (dbg)', 1743 'name': 'Android ChromeDriver Tests (dbg)',
1728 'factory': f_chromium_dbg_android_chromedriver_tests, 1744 'factory': f_chromium_dbg_android_chromedriver_tests,
1729 'category': 'android', 1745 'category': 'android',
1730 } 1746 }
1731 1747
1732 b_chromium_dbg_android_asan_builder_tests = { 1748 b_chromium_dbg_android_asan_builder_tests = {
1733 'name': 'Android Asan Builder Tests (dbg)', 1749 'name': 'Android Asan Builder Tests (dbg)',
1734 'factory': f_chromium_dbg_android_asan_builder_tests, 1750 'factory': f_chromium_dbg_android_asan_builder_tests,
1735 'category': 'android', 1751 'category': 'android',
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after
2238 2254
2239 # Android 2255 # Android
2240 b_chromium_dbg_android_builder, 2256 b_chromium_dbg_android_builder,
2241 b_chromium_dbg_android_mips_builder, 2257 b_chromium_dbg_android_mips_builder,
2242 b_chromium_dbg_android_x86_builder, 2258 b_chromium_dbg_android_x86_builder,
2243 b_chromium_dbg_android_tests_jb_gn, 2259 b_chromium_dbg_android_tests_jb_gn,
2244 b_chromium_dbg_android_tests_k_n5, 2260 b_chromium_dbg_android_tests_k_n5,
2245 b_chromium_dbg_android_tests_ics_gn, 2261 b_chromium_dbg_android_tests_ics_gn,
2246 b_chromium_dbg_android_tests_jb_nexus7, 2262 b_chromium_dbg_android_tests_jb_nexus7,
2247 b_chromium_dbg_android_tests_jb_manta, 2263 b_chromium_dbg_android_tests_jb_manta,
2264 b_chromium_dbg_android_tests_k_n5_user,
2265
2248 b_chromium_rel_android_user_builder_tests, 2266 b_chromium_rel_android_user_builder_tests,
2249 b_chromium_dbg_android_chromedriver_tests, 2267 b_chromium_dbg_android_chromedriver_tests,
2250 b_chromium_dbg_android_asan_builder_tests, 2268 b_chromium_dbg_android_asan_builder_tests,
2251 b_chromium_dbg_android_shared_jb_nexus7, 2269 b_chromium_dbg_android_shared_jb_nexus7,
2252 b_chromium_android_x64_builder, 2270 b_chromium_android_x64_builder,
2253 2271
2254 # Android AOSP 2272 # Android AOSP
2255 b_chromium_dbg_android_aosp_builder, 2273 b_chromium_dbg_android_aosp_builder,
2256 2274
2257 # Cronet 2275 # Cronet
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
2467 fromaddr=ActiveMaster.from_address, # Reply-To address 2485 fromaddr=ActiveMaster.from_address, # Reply-To address
2468 mode='failing', 2486 mode='failing',
2469 relayhost=config.Master.smtp, 2487 relayhost=config.Master.smtp,
2470 subject='Build failure on %(builder)s', 2488 subject='Build failure on %(builder)s',
2471 extraRecipients=[ 2489 extraRecipients=[
2472 'sebmarchand+pgofailure@google.com', 2490 'sebmarchand+pgofailure@google.com',
2473 'scottmg+pgofailure@google.com' 2491 'scottmg+pgofailure@google.com'
2474 ], 2492 ],
2475 sendToInterestedUsers=False, 2493 sendToInterestedUsers=False,
2476 builders=['Chromium Win PGO Builder'])) 2494 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