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

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

Issue 2106133004: Fix win_optional_gpu_tests_rel. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
552 { 552 {
553 'mastername': 'chromium.gpu.fyi', 553 'mastername': 'chromium.gpu.fyi',
554 'buildername': 'GPU Win Builder', 554 'buildername': 'GPU Win Builder',
555 'tester': 'Optional Win7 Release (NVIDIA)', 555 'tester': 'Optional Win7 Release (NVIDIA)',
556 }, 556 },
557 { 557 {
558 'mastername': 'chromium.gpu.fyi', 558 'mastername': 'chromium.gpu.fyi',
559 'buildername': 'GPU Win Builder', 559 'buildername': 'GPU Win Builder',
560 'tester': 'Win7 Release (ATI)', 560 'tester': 'Win7 Release (ATI)',
561 }, 561 },
562 {
563 'mastername': 'chromium.gpu.fyi',
564 'buildername': 'GPU Win Builder',
565 'tester': 'Optional Win7 Release (ATI)',
566 },
567 ], 562 ],
568 }, 563 },
569 # Optional Official trybot. 564 # Optional Official trybot.
570 'win_chrome_official': simple_bot({ 565 'win_chrome_official': simple_bot({
571 'mastername': 'chromium.chrome', 566 'mastername': 'chromium.chrome',
572 'buildername': 'Google Chrome Win', 567 'buildername': 'Google Chrome Win',
573 }), 568 }),
574 }, 569 },
575 }, 570 },
576 'tryserver.v8': { 571 'tryserver.v8': {
577 'builders': { 572 'builders': {
578 'v8_linux_blink_rel': simple_bot({ 573 'v8_linux_blink_rel': simple_bot({
579 'mastername': 'chromium.webkit', 574 'mastername': 'chromium.webkit',
580 'buildername': 'WebKit Linux', 575 'buildername': 'WebKit Linux',
581 }), 576 }),
582 'v8_linux_chromium_gn_rel': simple_bot({ 577 'v8_linux_chromium_gn_rel': simple_bot({
583 'mastername': 'client.v8.fyi', 578 'mastername': 'client.v8.fyi',
584 'buildername': 'V8 Linux GN', 579 'buildername': 'V8 Linux GN',
585 }), 580 }),
586 'v8_android_chromium_gn_dbg': simple_bot({ 581 'v8_android_chromium_gn_dbg': simple_bot({
587 'mastername': 'client.v8.fyi', 582 'mastername': 'client.v8.fyi',
588 'buildername': 'V8 Android GN (dbg)', 583 'buildername': 'V8 Android GN (dbg)',
589 }), 584 }),
590 }, 585 },
591 }, 586 },
592 }) 587 })
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698