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

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

Issue 1892943002: Add a copy of the "WinClang64 (dbg)" bot to the main waterfall. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: trybot 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 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 'tester': 'Win 7 Tests x64 (1)', 538 'tester': 'Win 7 Tests x64 (1)',
539 }), 539 }),
540 'win8_chromium_ng': simple_bot({ 540 'win8_chromium_ng': simple_bot({
541 'mastername': 'chromium.win', 541 'mastername': 'chromium.win',
542 'buildername': 'Win8 Aura', 542 'buildername': 'Win8 Aura',
543 }), 543 }),
544 'win8_chromium_gn_dbg': simple_bot({ 544 'win8_chromium_gn_dbg': simple_bot({
545 'mastername': 'chromium.win', 545 'mastername': 'chromium.win',
546 'buildername': 'Win8 GN (dbg)', 546 'buildername': 'Win8 GN (dbg)',
547 }), 547 }),
548 'win_clang': simple_bot({
549 'mastername': 'chromium.win',
550 'buildername': 'WinClang64 (dbg)',
551 }),
548 'win_chromium_syzyasan_rel': simple_bot({ 552 'win_chromium_syzyasan_rel': simple_bot({
549 'mastername': 'chromium.fyi', 553 'mastername': 'chromium.fyi',
550 'buildername': 'Win SyzyAsan (rel)', 554 'buildername': 'Win SyzyAsan (rel)',
551 }), 555 }),
552 # Experimental clang/win bots. 556 # Experimental clang/win bots.
553 'win_clang': simple_bot({
554 'mastername': 'chromium.fyi',
555 'buildername': 'WinClang',
556 }),
557 'win_clang_dbg': simple_bot({ 557 'win_clang_dbg': simple_bot({
558 'mastername': 'chromium.fyi', 558 'mastername': 'chromium.fyi',
559 'buildername': 'CrWinClang(dbg)', 559 'buildername': 'CrWinClang(dbg)',
560 }), 560 }),
561 'win_clang_rel': simple_bot({ 561 'win_clang_rel': simple_bot({
562 'mastername': 'chromium.fyi', 562 'mastername': 'chromium.fyi',
563 'buildername': 'CrWinClang', 563 'buildername': 'CrWinClang',
564 }), 564 }),
565 'win_clang_x64_dbg': simple_bot({ 565 'win_clang_x64_dbg': simple_bot({
566 'mastername': 'chromium.fyi', 566 'mastername': 'chromium.fyi',
(...skipping 30 matching lines...) Expand all
597 'mastername': 'client.v8.fyi', 597 'mastername': 'client.v8.fyi',
598 'buildername': 'V8 Linux GN', 598 'buildername': 'V8 Linux GN',
599 }), 599 }),
600 'v8_android_chromium_gn_dbg': simple_bot({ 600 'v8_android_chromium_gn_dbg': simple_bot({
601 'mastername': 'client.v8.fyi', 601 'mastername': 'client.v8.fyi',
602 'buildername': 'V8 Android GN (dbg)', 602 'buildername': 'V8 Android GN (dbg)',
603 }), 603 }),
604 }, 604 },
605 }, 605 },
606 }) 606 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698