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

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

Issue 1830323005: Windows 10 64-bit try server configuration. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: fixes Created 4 years, 8 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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 'buildername': 'GPU Win Builder', 557 'buildername': 'GPU Win Builder',
558 'tester': 'Win7 Release (NVIDIA)', 558 'tester': 'Win7 Release (NVIDIA)',
559 }, 559 },
560 { 560 {
561 'mastername': 'chromium.gpu', 561 'mastername': 'chromium.gpu',
562 'buildername': 'GPU Win Builder', 562 'buildername': 'GPU Win Builder',
563 'tester': 'Win7 Release (ATI)', 563 'tester': 'Win7 Release (ATI)',
564 }, 564 },
565 ], 565 ],
566 }, 566 },
567 'win10_chromium_rel_ng': simple_bot({ 567 'win10_chromium_x64_rel_ng': simple_bot({
568 'mastername': 'chromium.fyi', 568 'mastername': 'chromium.win',
569 'buildername': 'Win Builder', 569 'buildername': 'Win Builder',
570 'tester': 'Win10 Tests (1)', 570 'tester': 'Win10 Tests x64',
571 }), 571 }),
572 'win_chromium_rel_ng_exp': simple_bot({ 572 'win_chromium_rel_ng_exp': simple_bot({
573 'mastername': 'chromium.win', 573 'mastername': 'chromium.win',
574 'buildername': 'Win Builder', 574 'buildername': 'Win Builder',
575 'tester': 'Win7 Tests (1)', 575 'tester': 'Win7 Tests (1)',
576 }), 576 }),
577 'win_chromium_compile_dbg_ng': simple_bot({ 577 'win_chromium_compile_dbg_ng': simple_bot({
578 'mastername': 'chromium.win', 578 'mastername': 'chromium.win',
579 'buildername': 'Win Builder (dbg)', 579 'buildername': 'Win Builder (dbg)',
580 }, analyze_mode='compile'), 580 }, analyze_mode='compile'),
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 'mastername': 'client.v8.fyi', 652 'mastername': 'client.v8.fyi',
653 'buildername': 'V8 Linux GN', 653 'buildername': 'V8 Linux GN',
654 }), 654 }),
655 'v8_android_chromium_gn_dbg': simple_bot({ 655 'v8_android_chromium_gn_dbg': simple_bot({
656 'mastername': 'client.v8.fyi', 656 'mastername': 'client.v8.fyi',
657 'buildername': 'V8 Android GN (dbg)', 657 'buildername': 'V8 Android GN (dbg)',
658 }), 658 }),
659 }, 659 },
660 }, 660 },
661 }) 661 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698