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

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

Issue 2463523002: Add Linux Ozone fyi compile-only bot (Closed)
Patch Set: Created 4 years, 1 month 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 'tester': 'Linux TSan Tests', 353 'tester': 'Linux TSan Tests',
354 }), 354 }),
355 'linux_chromium_headless_rel': simple_bot({ 355 'linux_chromium_headless_rel': simple_bot({
356 'mastername': 'chromium.fyi', 356 'mastername': 'chromium.fyi',
357 'buildername': 'Headless Linux (dbg)', 357 'buildername': 'Headless Linux (dbg)',
358 }), 358 }),
359 'linux_chromium_cfi_rel_ng': simple_bot({ 359 'linux_chromium_cfi_rel_ng': simple_bot({
360 'mastername': 'chromium.fyi', 360 'mastername': 'chromium.fyi',
361 'buildername': 'CFI Linux', 361 'buildername': 'CFI Linux',
362 }), 362 }),
363 'linux_chromium_ozone_compile_only_ng': simple_bot({
364 'mastername': 'chromium.fyi',
365 'buildername': 'Ozone Linux',
366 }),
363 'linux_site_isolation': simple_bot({ 367 'linux_site_isolation': simple_bot({
364 'mastername': 'chromium.fyi', 368 'mastername': 'chromium.fyi',
365 'buildername': 'Site Isolation Linux', 369 'buildername': 'Site Isolation Linux',
366 }), 370 }),
367 'linux_layout_tests_slimming_paint_v2': simple_bot({ 371 'linux_layout_tests_slimming_paint_v2': simple_bot({
368 'mastername': 'chromium.fyi', 372 'mastername': 'chromium.fyi',
369 'buildername': 'WebKit Linux slimming_paint_v2 Dummy Builder', 373 'buildername': 'WebKit Linux slimming_paint_v2 Dummy Builder',
370 }), 374 }),
371 # Optional GPU bots. 375 # Optional GPU bots.
372 'linux_optional_gpu_tests_rel': { 376 'linux_optional_gpu_tests_rel': {
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 'mastername': 'client.v8.fyi', 568 'mastername': 'client.v8.fyi',
565 'buildername': 'V8 Linux GN', 569 'buildername': 'V8 Linux GN',
566 }), 570 }),
567 'v8_android_chromium_gn_dbg': simple_bot({ 571 'v8_android_chromium_gn_dbg': simple_bot({
568 'mastername': 'client.v8.fyi', 572 'mastername': 'client.v8.fyi',
569 'buildername': 'V8 Android GN (dbg)', 573 'buildername': 'V8 Android GN (dbg)',
570 }), 574 }),
571 }, 575 },
572 }, 576 },
573 }) 577 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698