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

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

Issue 2051613002: Switch Android GPU bots to Release from Debug. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 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
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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 }), 126 }),
127 'linux_android_rel_ng': simple_bot({ 127 'linux_android_rel_ng': simple_bot({
128 'mastername': 'chromium.linux', 128 'mastername': 'chromium.linux',
129 'buildername': 'Android Builder', 129 'buildername': 'Android Builder',
130 'tester': 'Android Tests', 130 'tester': 'Android Tests',
131 }), 131 }),
132 }, 132 },
133 }, 133 },
134 'tryserver.chromium.angle': { 134 'tryserver.chromium.angle': {
135 'builders': { 135 'builders': {
136 'android_angle_dbg_ng': simple_bot({ 136 'android_angle_rel_ng': simple_bot({
137 'mastername': 'chromium.gpu.fyi', 137 'mastername': 'chromium.gpu.fyi',
138 'buildername': 'Android Swarmed Debug (Nexus 5X)', 138 'buildername': 'Android Release (Nexus 5X)',
139 }), 139 }),
140 'linux_angle_rel_ng': simple_bot({ 140 'linux_angle_rel_ng': simple_bot({
141 'mastername': 'chromium.gpu.fyi', 141 'mastername': 'chromium.gpu.fyi',
142 'buildername': 'GPU Linux Builder', 142 'buildername': 'GPU Linux Builder',
143 'tester': 'Linux Release (NVIDIA)', 143 'tester': 'Linux Release (NVIDIA)',
144 }), 144 }),
145 'linux_angle_dbg_ng': simple_bot({ 145 'linux_angle_dbg_ng': simple_bot({
146 'mastername': 'chromium.gpu.fyi', 146 'mastername': 'chromium.gpu.fyi',
147 'buildername': 'GPU Linux Builder (dbg)', 147 'buildername': 'GPU Linux Builder (dbg)',
148 'tester': 'Linux Debug (NVIDIA)', 148 'tester': 'Linux Debug (NVIDIA)',
(...skipping 434 matching lines...) Expand 10 before | Expand all | Expand 10 after
583 'mastername': 'client.v8.fyi', 583 'mastername': 'client.v8.fyi',
584 'buildername': 'V8 Linux GN', 584 'buildername': 'V8 Linux GN',
585 }), 585 }),
586 'v8_android_chromium_gn_dbg': simple_bot({ 586 'v8_android_chromium_gn_dbg': simple_bot({
587 'mastername': 'client.v8.fyi', 587 'mastername': 'client.v8.fyi',
588 'buildername': 'V8 Android GN (dbg)', 588 'buildername': 'V8 Android GN (dbg)',
589 }), 589 }),
590 }, 590 },
591 }, 591 },
592 }) 592 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698