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

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

Issue 2103843005: Run default set of Win AMD GPU tests on 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 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
570 'win_optional_gpu_tests_rel': { 570 'win_optional_gpu_tests_rel': {
571 'bot_ids': [ 571 'bot_ids': [
572 { 572 {
573 'mastername': 'chromium.gpu.fyi', 573 'mastername': 'chromium.gpu.fyi',
574 'buildername': 'GPU Win Builder', 574 'buildername': 'GPU Win Builder',
575 'tester': 'Optional Win7 Release (NVIDIA)', 575 'tester': 'Optional Win7 Release (NVIDIA)',
576 }, 576 },
577 { 577 {
578 'mastername': 'chromium.gpu.fyi', 578 'mastername': 'chromium.gpu.fyi',
579 'buildername': 'GPU Win Builder', 579 'buildername': 'GPU Win Builder',
580 'tester': 'Win7 Release (ATI)',
581 },
582 {
583 'mastername': 'chromium.gpu.fyi',
584 'buildername': 'GPU Win Builder',
580 'tester': 'Optional Win7 Release (ATI)', 585 'tester': 'Optional Win7 Release (ATI)',
581 }, 586 },
582 ], 587 ],
583 }, 588 },
584 # Optional Official trybot. 589 # Optional Official trybot.
585 'win_chrome_official': simple_bot({ 590 'win_chrome_official': simple_bot({
586 'mastername': 'chromium.chrome', 591 'mastername': 'chromium.chrome',
587 'buildername': 'Google Chrome Win', 592 'buildername': 'Google Chrome Win',
588 }), 593 }),
589 }, 594 },
590 }, 595 },
591 'tryserver.v8': { 596 'tryserver.v8': {
592 'builders': { 597 'builders': {
593 'v8_linux_blink_rel': simple_bot({ 598 'v8_linux_blink_rel': simple_bot({
594 'mastername': 'chromium.webkit', 599 'mastername': 'chromium.webkit',
595 'buildername': 'WebKit Linux', 600 'buildername': 'WebKit Linux',
596 }), 601 }),
597 'v8_linux_chromium_gn_rel': simple_bot({ 602 'v8_linux_chromium_gn_rel': simple_bot({
598 'mastername': 'client.v8.fyi', 603 'mastername': 'client.v8.fyi',
599 'buildername': 'V8 Linux GN', 604 'buildername': 'V8 Linux GN',
600 }), 605 }),
601 'v8_android_chromium_gn_dbg': simple_bot({ 606 'v8_android_chromium_gn_dbg': simple_bot({
602 'mastername': 'client.v8.fyi', 607 'mastername': 'client.v8.fyi',
603 'buildername': 'V8 Android GN (dbg)', 608 'buildername': 'V8 Android GN (dbg)',
604 }), 609 }),
605 }, 610 },
606 }, 611 },
607 }) 612 })
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