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

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

Issue 2044513004: Recipe for Blimp bot on chromium.linux (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Moves blimp FYI slave to chromium.linux 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 }), 220 }),
221 'win_angle_x64_dbg_ng': simple_bot({ 221 'win_angle_x64_dbg_ng': simple_bot({
222 'mastername': 'chromium.gpu.fyi', 222 'mastername': 'chromium.gpu.fyi',
223 'buildername': 'GPU Win x64 Builder (dbg)', 223 'buildername': 'GPU Win x64 Builder (dbg)',
224 'tester': 'Win7 x64 Debug (NVIDIA)', 224 'tester': 'Win7 x64 Debug (NVIDIA)',
225 }), 225 }),
226 }, 226 },
227 }, 227 },
228 'tryserver.chromium.linux': { 228 'tryserver.chromium.linux': {
229 'builders': { 229 'builders': {
230 'blimp_linux_dbg': simple_bot({
231 'mastername': 'chromium.linux',
232 'buildername': 'Blimp Linux (dbg)',
233 }),
230 'cast_shell_linux': simple_bot({ 234 'cast_shell_linux': simple_bot({
231 'mastername': 'chromium.linux', 235 'mastername': 'chromium.linux',
232 'buildername': 'Cast Linux', 236 'buildername': 'Cast Linux',
233 }), 237 }),
234 'linux_arm': simple_bot({ 238 'linux_arm': simple_bot({
235 'mastername': 'chromium.fyi', 239 'mastername': 'chromium.fyi',
236 'buildername': 'Linux ARM', 240 'buildername': 'Linux ARM',
237 }), 241 }),
238 'linux_chromium_browser_side_navigation_rel': simple_bot({ 242 'linux_chromium_browser_side_navigation_rel': simple_bot({
239 'mastername': 'chromium.fyi', 243 'mastername': 'chromium.fyi',
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 'mastername': 'client.v8.fyi', 579 'mastername': 'client.v8.fyi',
576 'buildername': 'V8 Linux GN', 580 'buildername': 'V8 Linux GN',
577 }), 581 }),
578 'v8_android_chromium_gn_dbg': simple_bot({ 582 'v8_android_chromium_gn_dbg': simple_bot({
579 'mastername': 'client.v8.fyi', 583 'mastername': 'client.v8.fyi',
580 'buildername': 'V8 Android GN (dbg)', 584 'buildername': 'V8 Android GN (dbg)',
581 }), 585 }),
582 }, 586 },
583 }, 587 },
584 }) 588 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698