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

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

Issue 2327543002: chromium_tests: add an option to disable deapplying patch on some trybots (Closed)
Patch Set: rebase Created 4 years, 3 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 420 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 'mastername': 'chromium.mac', 431 'mastername': 'chromium.mac',
432 'buildername': 'Mac Builder', 432 'buildername': 'Mac Builder',
433 }, analyze_mode='compile'), 433 }, analyze_mode='compile'),
434 'mac_chromium_asan_rel_ng': simple_bot({ 434 'mac_chromium_asan_rel_ng': simple_bot({
435 'mastername': 'chromium.memory', 435 'mastername': 'chromium.memory',
436 'buildername': 'Mac ASan 64 Builder', 436 'buildername': 'Mac ASan 64 Builder',
437 'tester': 'Mac ASan 64 Tests (1)', 437 'tester': 'Mac ASan 64 Tests (1)',
438 }), 438 }),
439 # Optional GPU bots. 439 # Optional GPU bots.
440 'mac_optional_gpu_tests_rel': { 440 'mac_optional_gpu_tests_rel': {
441 'deapply_patch': False,
441 'bot_ids': [ 442 'bot_ids': [
442 { 443 {
443 'mastername': 'chromium.gpu.fyi', 444 'mastername': 'chromium.gpu.fyi',
444 'buildername': 'GPU Mac Builder', 445 'buildername': 'GPU Mac Builder',
445 'tester': 'Optional Mac 10.10 Release (Intel)', 446 'tester': 'Optional Mac 10.10 Release (Intel)',
446 }, 447 },
447 { 448 {
448 'mastername': 'chromium.gpu.fyi', 449 'mastername': 'chromium.gpu.fyi',
449 'buildername': 'GPU Mac Builder', 450 'buildername': 'GPU Mac Builder',
450 'tester': 'Optional Mac Retina Release', 451 'tester': 'Optional Mac Retina Release',
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
567 'mastername': 'client.v8.fyi', 568 'mastername': 'client.v8.fyi',
568 'buildername': 'V8 Linux GN', 569 'buildername': 'V8 Linux GN',
569 }), 570 }),
570 'v8_android_chromium_gn_dbg': simple_bot({ 571 'v8_android_chromium_gn_dbg': simple_bot({
571 'mastername': 'client.v8.fyi', 572 'mastername': 'client.v8.fyi',
572 'buildername': 'V8 Android GN (dbg)', 573 'buildername': 'V8 Android GN (dbg)',
573 }), 574 }),
574 }, 575 },
575 }, 576 },
576 }) 577 })
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium_tests/api.py ('k') | scripts/slave/recipes/chromium_trybot.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698