Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 437 'win10_chromium_rel_ng': simple_bot({ | 437 'win10_chromium_rel_ng': simple_bot({ |
| 438 'mastername': 'chromium.fyi', | 438 'mastername': 'chromium.fyi', |
| 439 'buildername': 'Win Builder', | 439 'buildername': 'Win Builder', |
| 440 'tester': 'Win10 Tests (1)', | 440 'tester': 'Win10 Tests (1)', |
| 441 }), | 441 }), |
| 442 'win_chromium_rel_ng_exp': simple_bot({ | 442 'win_chromium_rel_ng_exp': simple_bot({ |
| 443 'mastername': 'chromium.win', | 443 'mastername': 'chromium.win', |
| 444 'buildername': 'Win Builder', | 444 'buildername': 'Win Builder', |
| 445 'tester': 'Win7 Tests (1)', | 445 'tester': 'Win7 Tests (1)', |
| 446 }), | 446 }), |
| 447 'win_chromium_xp_rel_ng': simple_bot({ | |
|
Paweł Hajdan Jr.
2016/01/25 15:44:25
Could you remove these from the tryserver master a
jam
2016/01/25 15:52:29
Done.
| |
| 448 'mastername': 'chromium.win', | |
| 449 'buildername': 'Win Builder', | |
| 450 'tester': 'XP Tests (1)', | |
| 451 }), | |
| 452 'win_chromium_vista_rel_ng': simple_bot({ | |
| 453 'mastername': 'chromium.win', | |
| 454 'buildername': 'Win Builder', | |
| 455 'tester': 'Vista Tests (1)', | |
| 456 }), | |
| 457 'win_chromium_compile_dbg_ng': simple_bot({ | 447 'win_chromium_compile_dbg_ng': simple_bot({ |
| 458 'mastername': 'chromium.win', | 448 'mastername': 'chromium.win', |
| 459 'buildername': 'Win Builder (dbg)', | 449 'buildername': 'Win Builder (dbg)', |
| 460 }, analyze_mode='compile'), | 450 }, analyze_mode='compile'), |
| 461 'win_chromium_compile_dbg_ng_exp': simple_bot({ | 451 'win_chromium_compile_dbg_ng_exp': simple_bot({ |
| 462 'mastername': 'chromium.win', | 452 'mastername': 'chromium.win', |
| 463 'buildername': 'Win Builder (dbg)', | 453 'buildername': 'Win Builder (dbg)', |
| 464 }, analyze_mode='compile'), | 454 }, analyze_mode='compile'), |
| 465 'win_chromium_compile_rel_ng': simple_bot({ | 455 'win_chromium_compile_rel_ng': simple_bot({ |
| 466 'mastername': 'chromium.win', | 456 'mastername': 'chromium.win', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 514 }, | 504 }, |
| 515 'tryserver.v8': { | 505 'tryserver.v8': { |
| 516 'builders': { | 506 'builders': { |
| 517 'v8_linux_blink_rel': simple_bot({ | 507 'v8_linux_blink_rel': simple_bot({ |
| 518 'mastername': 'chromium.webkit', | 508 'mastername': 'chromium.webkit', |
| 519 'buildername': 'WebKit Linux', | 509 'buildername': 'WebKit Linux', |
| 520 }), | 510 }), |
| 521 }, | 511 }, |
| 522 }, | 512 }, |
| 523 }) | 513 }) |
| OLD | NEW |