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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/trybots.py

Issue 2308683002: [Android] Set up continuous builder + trybot for cronet. (Closed)
Patch Set: update expectations 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from recipe_engine.types import freeze 5 from recipe_engine.types import freeze
6 6
7 7
8 def simple_bot(bot_id, analyze_mode=None): 8 def simple_bot(bot_id, analyze_mode=None):
9 return { 9 return {
10 'bot_ids': [bot_id], 10 'bot_ids': [bot_id],
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 'buildername': 'Android x86 Builder (dbg)', 120 'buildername': 'Android x86 Builder (dbg)',
121 }, analyze_mode='compile'), 121 }, analyze_mode='compile'),
122 'android_compile_rel': simple_bot({ 122 'android_compile_rel': simple_bot({
123 'mastername': 'chromium.linux', 123 'mastername': 'chromium.linux',
124 'buildername': 'Android Builder', 124 'buildername': 'Android Builder',
125 }, analyze_mode='compile'), 125 }, analyze_mode='compile'),
126 'android_coverage': simple_bot({ 126 'android_coverage': simple_bot({
127 'mastername': 'chromium.fyi', 127 'mastername': 'chromium.fyi',
128 'buildername': 'Android Coverage (dbg)' 128 'buildername': 'Android Coverage (dbg)'
129 }), 129 }),
130 'android_cronet': simple_bot({
131 'mastername': 'chromium.android',
132 'buildername': 'Android Cronet Builder'
133 }),
130 'android_n5x_swarming_rel': simple_bot({ 134 'android_n5x_swarming_rel': simple_bot({
131 'mastername': 'chromium.android', 135 'mastername': 'chromium.android',
132 'buildername': 'Android N5X Swarm Builder', 136 'buildername': 'Android N5X Swarm Builder',
133 }), 137 }),
134 'android_optional_gpu_tests_rel': simple_bot({ 138 'android_optional_gpu_tests_rel': simple_bot({
135 'mastername': 'chromium.gpu.fyi', 139 'mastername': 'chromium.gpu.fyi',
136 'buildername': 'Android Release (Nexus 5X)', 140 'buildername': 'Android Release (Nexus 5X)',
137 }), 141 }),
138 'cast_shell_android': simple_bot({ 142 'cast_shell_android': simple_bot({
139 'mastername': 'chromium.linux', 143 'mastername': 'chromium.linux',
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 'mastername': 'client.v8.fyi', 567 'mastername': 'client.v8.fyi',
564 'buildername': 'V8 Linux GN', 568 'buildername': 'V8 Linux GN',
565 }), 569 }),
566 'v8_android_chromium_gn_dbg': simple_bot({ 570 'v8_android_chromium_gn_dbg': simple_bot({
567 'mastername': 'client.v8.fyi', 571 'mastername': 'client.v8.fyi',
568 'buildername': 'V8 Android GN (dbg)', 572 'buildername': 'V8 Android GN (dbg)',
569 }), 573 }),
570 }, 574 },
571 }, 575 },
572 }) 576 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698