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

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

Issue 1716093002: Flip linux_chromium_clobber_rel_ng to mirror Linux x64 on p/chromium. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 10 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 # 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 302 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 }, analyze_mode='compile'), 313 }, analyze_mode='compile'),
314 'linux_chromium_archive_rel_32_ng': simple_bot({ 314 'linux_chromium_archive_rel_32_ng': simple_bot({
315 'mastername': 'chromium', 315 'mastername': 'chromium',
316 'buildername': 'Linux', 316 'buildername': 'Linux',
317 }), 317 }),
318 'linux_chromium_archive_rel_ng': simple_bot({ 318 'linux_chromium_archive_rel_ng': simple_bot({
319 'mastername': 'chromium', 319 'mastername': 'chromium',
320 'buildername': 'Linux x64', 320 'buildername': 'Linux x64',
321 }), 321 }),
322 'linux_chromium_clobber_rel_ng': simple_bot({ 322 'linux_chromium_clobber_rel_ng': simple_bot({
323 'mastername': 'chromium.fyi', 323 'mastername': 'chromium',
324 'buildername': 'Linux Builder (clobber)', 324 'buildername': 'Linux x64',
325 }, analyze_mode='compile'), 325 }, analyze_mode='compile'),
326 'linux_chromium_chromeos_dbg_ng': simple_bot({ 326 'linux_chromium_chromeos_dbg_ng': simple_bot({
327 'mastername': 'chromium.chromiumos', 327 'mastername': 'chromium.chromiumos',
328 'buildername': 'Linux ChromiumOS Builder (dbg)', 328 'buildername': 'Linux ChromiumOS Builder (dbg)',
329 'tester': 'Linux ChromiumOS Tests (dbg)(1)', 329 'tester': 'Linux ChromiumOS Tests (dbg)(1)',
330 }), 330 }),
331 'linux_chromium_chromeos_compile_dbg_ng': simple_bot({ 331 'linux_chromium_chromeos_compile_dbg_ng': simple_bot({
332 'mastername': 'chromium.chromiumos', 332 'mastername': 'chromium.chromiumos',
333 'buildername': 'Linux ChromiumOS Builder (dbg)', 333 'buildername': 'Linux ChromiumOS Builder (dbg)',
334 }, analyze_mode='compile'), 334 }, analyze_mode='compile'),
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 }, 636 },
637 'tryserver.v8': { 637 'tryserver.v8': {
638 'builders': { 638 'builders': {
639 'v8_linux_blink_rel': simple_bot({ 639 'v8_linux_blink_rel': simple_bot({
640 'mastername': 'chromium.webkit', 640 'mastername': 'chromium.webkit',
641 'buildername': 'WebKit Linux', 641 'buildername': 'WebKit Linux',
642 }), 642 }),
643 }, 643 },
644 }, 644 },
645 }) 645 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698