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

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

Issue 1693403002: tryserver.chromium.android: Add new trybots for architectures. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Shard slaves for now. Created 4 years, 9 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 'buildername': 'WebKit Win non-Oilpan', 101 'buildername': 'WebKit Win non-Oilpan',
102 }), 102 }),
103 'win_blink_oilpan_compile_rel': simple_bot({ 103 'win_blink_oilpan_compile_rel': simple_bot({
104 'mastername': 'chromium.webkit', 104 'mastername': 'chromium.webkit',
105 'buildername': 'WebKit Win non-Oilpan', 105 'buildername': 'WebKit Win non-Oilpan',
106 }, analyze_mode='compile'), 106 }, analyze_mode='compile'),
107 }, 107 },
108 }, 108 },
109 'tryserver.chromium.android': { 109 'tryserver.chromium.android': {
110 'builders': { 110 'builders': {
111 'android_blink_rel': simple_bot({
112 'mastername': 'chromium.webkit',
113 'buildername': 'WebKit Android (Nexus4)',
114 }, analyze_mode='compile'),
115 'android_chromium_gn_rel': simple_bot({
116 'mastername': 'chromium.linux',
117 'buildername': 'Android GN',
118 }),
119 'android_amp': simple_bot({ 111 'android_amp': simple_bot({
120 'mastername': 'chromium.fyi', 112 'mastername': 'chromium.fyi',
121 'buildername': 'Android Tests (amp split)', 113 'buildername': 'Android Tests (amp split)',
122 }), 114 }),
123 'android_archive_rel_ng': simple_bot({ 115 'android_archive_rel_ng': simple_bot({
124 'mastername': 'chromium', 116 'mastername': 'chromium',
125 'buildername': 'Android', 117 'buildername': 'Android',
126 }), 118 }),
127 'android_arm64_dbg_recipe': simple_bot({ 119 'android_arm64_dbg_recipe': simple_bot({
128 'mastername': 'chromium.linux', 120 'mastername': 'chromium.linux',
129 'buildername': 'Android Arm64 Builder (dbg)', 121 'buildername': 'Android Arm64 Builder (dbg)',
130 }, analyze_mode='compile'), 122 }, analyze_mode='compile'),
123 'android_blink_rel': simple_bot({
124 'mastername': 'chromium.webkit',
125 'buildername': 'WebKit Android (Nexus4)',
126 }, analyze_mode='compile'),
131 'android_clang_dbg_recipe': simple_bot({ 127 'android_clang_dbg_recipe': simple_bot({
132 'mastername': 'chromium.linux', 128 'mastername': 'chromium.linux',
133 'buildername': 'Android Clang Builder (dbg)', 129 'buildername': 'Android Clang Builder (dbg)',
134 }, analyze_mode='compile'), 130 }, analyze_mode='compile'),
131 'android_chromium_gn_rel': simple_bot({
132 'mastername': 'chromium.linux',
133 'buildername': 'Android GN',
134 }),
135 'android_chromium_gn_compile_dbg': simple_bot({ 135 'android_chromium_gn_compile_dbg': simple_bot({
136 'mastername': 'chromium.linux', 136 'mastername': 'chromium.linux',
137 'buildername': 'Android GN (dbg)', 137 'buildername': 'Android GN (dbg)',
138 }, analyze_mode='compile'), 138 }, analyze_mode='compile'),
139 'android_chromium_gn_compile_rel': simple_bot({ 139 'android_chromium_gn_compile_rel': simple_bot({
140 'mastername': 'chromium.linux', 140 'mastername': 'chromium.linux',
141 'buildername': 'Android GN', 141 'buildername': 'Android GN',
142 }, analyze_mode='compile'), 142 }, analyze_mode='compile'),
143 'android_compile_dbg': simple_bot({ 143 'android_compile_dbg': simple_bot({
144 'mastername': 'chromium.linux', 144 'mastername': 'chromium.linux',
145 'buildername': 'Android Builder (dbg)', 145 'buildername': 'Android Builder (dbg)',
146 }, analyze_mode='compile'), 146 }, analyze_mode='compile'),
147 'android_compile_mips_dbg': simple_bot({
148 'mastername': 'chromium.android',
149 'buildername': 'Android MIPS Builder (dbg)',
150 }, analyze_mode='compile'),
151 'android_compile_x64_dbg': simple_bot({
152 'mastername': 'chromium.android',
153 'buildername': 'Android x64 Builder (dbg)',
154 }, analyze_mode='compile'),
155 'android_compile_x86_dbg': simple_bot({
156 'mastername': 'chromium.android',
157 'buildername': 'Android x86 Builder (dbg)',
158 }, analyze_mode='compile'),
147 'android_compile_rel': simple_bot({ 159 'android_compile_rel': simple_bot({
148 'mastername': 'chromium.linux', 160 'mastername': 'chromium.linux',
149 'buildername': 'Android Builder', 161 'buildername': 'Android Builder',
150 }, analyze_mode='compile'), 162 }, analyze_mode='compile'),
151 'android_coverage': simple_bot({ 163 'android_coverage': simple_bot({
152 'mastername': 'chromium.fyi', 164 'mastername': 'chromium.fyi',
153 'buildername': 'Android Coverage (dbg)' 165 'buildername': 'Android Coverage (dbg)'
154 }), 166 }),
155 'cast_shell_android': simple_bot({ 167 'cast_shell_android': simple_bot({
156 'mastername': 'chromium.linux', 168 'mastername': 'chromium.linux',
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 }, 643 },
632 'tryserver.v8': { 644 'tryserver.v8': {
633 'builders': { 645 'builders': {
634 'v8_linux_blink_rel': simple_bot({ 646 'v8_linux_blink_rel': simple_bot({
635 'mastername': 'chromium.webkit', 647 'mastername': 'chromium.webkit',
636 'buildername': 'WebKit Linux', 648 'buildername': 'WebKit Linux',
637 }), 649 }),
638 }, 650 },
639 }, 651 },
640 }) 652 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698