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

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

Issue 2336573002: Add recipe for linux_chromium_headless_dbg trybot (Closed)
Patch Set: 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_linux_linux_chromium_headless_dbg.json » ('j') | 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 'linux_chromium_msan_rel_ng': simple_bot({ 353 'linux_chromium_msan_rel_ng': simple_bot({
354 'mastername': 'chromium.memory.full', 354 'mastername': 'chromium.memory.full',
355 'buildername': 'Chromium Linux MSan Builder', 355 'buildername': 'Chromium Linux MSan Builder',
356 'tester': 'Linux MSan Tests', 356 'tester': 'Linux MSan Tests',
357 }), 357 }),
358 'linux_chromium_tsan_rel_ng': simple_bot({ 358 'linux_chromium_tsan_rel_ng': simple_bot({
359 'mastername': 'chromium.memory.full', 359 'mastername': 'chromium.memory.full',
360 'buildername': 'Chromium Linux TSan Builder', 360 'buildername': 'Chromium Linux TSan Builder',
361 'tester': 'Linux TSan Tests', 361 'tester': 'Linux TSan Tests',
362 }), 362 }),
363 'linux_chromium_headless_dbg': simple_bot({
364 'mastername': 'chromium.fyi',
365 'buildername': 'Headless Linux (dbg)',
366 }),
363 'linux_chromium_cfi_rel_ng': simple_bot({ 367 'linux_chromium_cfi_rel_ng': simple_bot({
364 'mastername': 'chromium.fyi', 368 'mastername': 'chromium.fyi',
365 'buildername': 'CFI Linux', 369 'buildername': 'CFI Linux',
366 }), 370 }),
367 'linux_site_isolation': simple_bot({ 371 'linux_site_isolation': simple_bot({
368 'mastername': 'chromium.fyi', 372 'mastername': 'chromium.fyi',
369 'buildername': 'Site Isolation Linux', 373 'buildername': 'Site Isolation Linux',
370 }), 374 }),
371 'linux_layout_tests_slimming_paint_v2': simple_bot({ 375 'linux_layout_tests_slimming_paint_v2': simple_bot({
372 'mastername': 'chromium.fyi', 376 'mastername': 'chromium.fyi',
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 'mastername': 'client.v8.fyi', 572 'mastername': 'client.v8.fyi',
569 'buildername': 'V8 Linux GN', 573 'buildername': 'V8 Linux GN',
570 }), 574 }),
571 'v8_android_chromium_gn_dbg': simple_bot({ 575 'v8_android_chromium_gn_dbg': simple_bot({
572 'mastername': 'client.v8.fyi', 576 'mastername': 'client.v8.fyi',
573 'buildername': 'V8 Android GN (dbg)', 577 'buildername': 'V8 Android GN (dbg)',
574 }), 578 }),
575 }, 579 },
576 }, 580 },
577 }) 581 })
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_linux_linux_chromium_headless_dbg.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698