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

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

Issue 1104533002: Add recipe for split AMP/local CQ. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Parent builder Android Builder (dbg) and expectation changes. Created 5 years, 6 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 | Annotate | Revision Log
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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 s_chromium_win_dbg = Triggerable( 182 s_chromium_win_dbg = Triggerable(
183 name='win_dbg', 183 name='win_dbg',
184 builderNames=['Vista Tests (dbg)(1)', 184 builderNames=['Vista Tests (dbg)(1)',
185 'Vista Tests (dbg)(2)',]) 185 'Vista Tests (dbg)(2)',])
186 186
187 # Triggerable scheduler for Android Builder 187 # Triggerable scheduler for Android Builder
188 s_chromium_android_dbg = Triggerable( 188 s_chromium_android_dbg = Triggerable(
189 name='android_dbg', 189 name='android_dbg',
190 builderNames=['Android Tests (L Nexus5)(dbg)', 190 builderNames=['Android Tests (L Nexus5)(dbg)',
191 'Android ChromeDriver Tests (dbg)', 191 'Android ChromeDriver Tests (dbg)',
192 'Android Tests (amp)(dbg)', 192 'Android Tests (amp split)',
193 'Android Tests (trial)(dbg)', 193 'Android Tests (trial)(dbg)',
194 'Android Webview L (dbg)']) 194 'Android Webview L (dbg)'])
195 195
196 # Triggerable scheduler for Cronet Builder 196 # Triggerable scheduler for Cronet Builder
197 s_chromium_cronet_rel = Triggerable( 197 s_chromium_cronet_rel = Triggerable(
198 name='cronet_rel', 198 name='cronet_rel',
199 builderNames=['Android Cronet ARMv6 Builder', 199 builderNames=['Android Cronet ARMv6 Builder',
200 'Android Cronet ARM64 Builder', 200 'Android Cronet ARM64 Builder',
201 'Android Cronet x86 Builder', 201 'Android Cronet x86 Builder',
202 'Android Cronet MIPS Builder', 202 'Android Cronet MIPS Builder',
(...skipping 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1412 'category': 'android_tests', 1412 'category': 'android_tests',
1413 } 1413 }
1414 1414
1415 b_chromium_dbg_android_tests_k_n5_user = { 1415 b_chromium_dbg_android_tests_k_n5_user = {
1416 'name': 'Android Tests (trial)(dbg)', 1416 'name': 'Android Tests (trial)(dbg)',
1417 'factory': m_annotator.BaseFactory(recipe='chromium'), 1417 'factory': m_annotator.BaseFactory(recipe='chromium'),
1418 'category': 'android_tests', 1418 'category': 'android_tests',
1419 } 1419 }
1420 1420
1421 b_chromium_dbg_android_tests_amp = { 1421 b_chromium_dbg_android_tests_amp = {
1422 'name': 'Android Tests (amp)(dbg)', 1422 'name': 'Android Tests (amp split)',
1423 'factory': annotator_factory.AnnotatorFactory().BaseFactory( 1423 'factory': annotator_factory.AnnotatorFactory().BaseFactory(
1424 'android/appurify'), 1424 'android/appurify'),
1425 'category': 'android_tests', 1425 'category': 'android_tests',
1426 } 1426 }
1427 1427
1428 b_chromium_dbg_android_chromedriver_tests = { 1428 b_chromium_dbg_android_chromedriver_tests = {
1429 'name': 'Android ChromeDriver Tests (dbg)', 1429 'name': 'Android ChromeDriver Tests (dbg)',
1430 'factory': f_chromium_dbg_android_chromedriver_tests, 1430 'factory': f_chromium_dbg_android_chromedriver_tests,
1431 'category': 'android_tests', 1431 'category': 'android_tests',
1432 } 1432 }
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after
2099 c['status'].append(MailNotifier( 2099 c['status'].append(MailNotifier(
2100 fromaddr=ActiveMaster.from_address, # Reply-To address 2100 fromaddr=ActiveMaster.from_address, # Reply-To address
2101 mode='failing', 2101 mode='failing',
2102 relayhost=config.Master.smtp, 2102 relayhost=config.Master.smtp,
2103 subject='Remoting Android Tests failing on %(builder)s', 2103 subject='Remoting Android Tests failing on %(builder)s',
2104 extraRecipients=[ 2104 extraRecipients=[
2105 'remoting-android-test-results@google.com', 2105 'remoting-android-test-results@google.com',
2106 ], 2106 ],
2107 sendToInterestedUsers=False, 2107 sendToInterestedUsers=False,
2108 builders=['Android Remoting Tests'])) 2108 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_tests/steps.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698