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

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

Issue 2338293005: Rename all 'WebKit Linux' builders to 'WebKit Linux Precise' (1/3 CLs) (Closed)
Patch Set: 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],
11 'analyze_mode': analyze_mode, 11 'analyze_mode': analyze_mode,
12 } 12 }
13 13
14 14
15 TRYBOTS = freeze({ 15 TRYBOTS = freeze({
16 'tryserver.blink': { 16 'tryserver.blink': {
17 'builders': { 17 'builders': {
18 'linux_precise_blink_dbg': simple_bot({ 18 'linux_precise_blink_dbg': simple_bot({
19 'mastername': 'chromium.webkit', 19 'mastername': 'chromium.webkit',
20 'buildername': 'WebKit Linux (dbg)', 20 'buildername': 'WebKit Linux Precise (dbg)',
21 }), 21 }),
22 'linux_precise_blink_rel': simple_bot({ 22 'linux_precise_blink_rel': simple_bot({
23 'mastername': 'chromium.webkit', 23 'mastername': 'chromium.webkit',
24 'buildername': 'WebKit Linux', 24 'buildername': 'WebKit Linux Precise',
25 }), 25 }),
26 'linux_precise_blink_compile_dbg': simple_bot({ 26 'linux_precise_blink_compile_dbg': simple_bot({
27 'mastername': 'chromium.webkit', 27 'mastername': 'chromium.webkit',
28 'buildername': 'WebKit Linux (dbg)', 28 'buildername': 'WebKit Linux Precise (dbg)',
29 }, analyze_mode='compile'), 29 }, analyze_mode='compile'),
30 'linux_precise_blink_compile_rel': simple_bot({ 30 'linux_precise_blink_compile_rel': simple_bot({
31 'mastername': 'chromium.webkit', 31 'mastername': 'chromium.webkit',
32 'buildername': 'WebKit Linux', 32 'buildername': 'WebKit Linux Precise',
33 }, analyze_mode='compile'), 33 }, analyze_mode='compile'),
34 'linux_trusty_blink_rel': simple_bot({ 34 'linux_trusty_blink_rel': simple_bot({
35 'mastername': 'chromium.webkit', 35 'mastername': 'chromium.webkit',
36 'buildername': 'WebKit Linux Trusty', 36 'buildername': 'WebKit Linux Trusty',
37 }), 37 }),
38 'mac10.9_blink_dbg': simple_bot({ 38 'mac10.9_blink_dbg': simple_bot({
39 'mastername': 'chromium.webkit', 39 'mastername': 'chromium.webkit',
40 'buildername': 'WebKit Mac10.11 (dbg)', 40 'buildername': 'WebKit Mac10.11 (dbg)',
41 }), 41 }),
42 'mac10.9_blink_rel': simple_bot({ 42 'mac10.9_blink_rel': simple_bot({
(...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 'linux_chromium_cfi_rel_ng': simple_bot({ 367 'linux_chromium_cfi_rel_ng': simple_bot({
368 'mastername': 'chromium.fyi', 368 'mastername': 'chromium.fyi',
369 'buildername': 'CFI Linux', 369 'buildername': 'CFI Linux',
370 }), 370 }),
371 'linux_site_isolation': simple_bot({ 371 'linux_site_isolation': simple_bot({
372 'mastername': 'chromium.fyi', 372 'mastername': 'chromium.fyi',
373 'buildername': 'Site Isolation Linux', 373 'buildername': 'Site Isolation Linux',
374 }), 374 }),
375 'linux_layout_tests_slimming_paint_v2': simple_bot({ 375 'linux_layout_tests_slimming_paint_v2': simple_bot({
376 'mastername': 'chromium.fyi', 376 'mastername': 'chromium.fyi',
377 'buildername': 'WebKit Linux slimming_paint_v2 Dummy Builder', 377 'buildername': 'WebKit Linux Precise slimming_paint_v2 Dummy Builder',
378 }), 378 }),
379 # Optional GPU bots. 379 # Optional GPU bots.
380 'linux_optional_gpu_tests_rel': { 380 'linux_optional_gpu_tests_rel': {
381 'bot_ids': [ 381 'bot_ids': [
382 { 382 {
383 'mastername': 'chromium.gpu.fyi', 383 'mastername': 'chromium.gpu.fyi',
384 'buildername': 'GPU Linux Builder', 384 'buildername': 'GPU Linux Builder',
385 'tester': 'Optional Linux Release (NVIDIA)', 385 'tester': 'Optional Linux Release (NVIDIA)',
386 }, 386 },
387 ], 387 ],
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
559 'win_chrome_official': simple_bot({ 559 'win_chrome_official': simple_bot({
560 'mastername': 'chromium.chrome', 560 'mastername': 'chromium.chrome',
561 'buildername': 'Google Chrome Win', 561 'buildername': 'Google Chrome Win',
562 }), 562 }),
563 }, 563 },
564 }, 564 },
565 'tryserver.v8': { 565 'tryserver.v8': {
566 'builders': { 566 'builders': {
567 'v8_linux_blink_rel': simple_bot({ 567 'v8_linux_blink_rel': simple_bot({
568 'mastername': 'chromium.webkit', 568 'mastername': 'chromium.webkit',
569 'buildername': 'WebKit Linux', 569 'buildername': 'WebKit Linux Precise',
570 }), 570 }),
571 'v8_linux_chromium_gn_rel': simple_bot({ 571 'v8_linux_chromium_gn_rel': simple_bot({
572 'mastername': 'client.v8.fyi', 572 'mastername': 'client.v8.fyi',
573 'buildername': 'V8 Linux GN', 573 'buildername': 'V8 Linux GN',
574 }), 574 }),
575 'v8_android_chromium_gn_dbg': simple_bot({ 575 'v8_android_chromium_gn_dbg': simple_bot({
576 'mastername': 'client.v8.fyi', 576 'mastername': 'client.v8.fyi',
577 'buildername': 'V8 Android GN (dbg)', 577 'buildername': 'V8 Android GN (dbg)',
578 }), 578 }),
579 }, 579 },
580 }, 580 },
581 }) 581 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698