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

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

Issue 2153503006: Add config for Linux layout test try bot with --enable-slimming-paint-v2. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Fix builder name in master.cfg. Created 4 years, 5 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 }), 333 }),
334 'linux_chromium_tsan_rel_ng': simple_bot({ 334 'linux_chromium_tsan_rel_ng': simple_bot({
335 'mastername': 'chromium.memory.fyi', 335 'mastername': 'chromium.memory.fyi',
336 'buildername': 'Chromium Linux TSan Builder', 336 'buildername': 'Chromium Linux TSan Builder',
337 'tester': 'Linux TSan Tests', 337 'tester': 'Linux TSan Tests',
338 }), 338 }),
339 'linux_chromium_cfi_rel_ng': simple_bot({ 339 'linux_chromium_cfi_rel_ng': simple_bot({
340 'mastername': 'chromium.fyi', 340 'mastername': 'chromium.fyi',
341 'buildername': 'CFI Linux', 341 'buildername': 'CFI Linux',
342 }), 342 }),
343 'linux_site_isolation': simple_bot({ 343 'linux_layout_tests_slimming_paint_v2': simple_bot({
Paweł Hajdan Jr. 2016/07/22 13:36:12 Did you intend to remove linux_site_isolation? I d
qyearsley 2016/07/22 16:42:06 I didn't intend to remove linux_site_isolation, th
344 'mastername': 'chromium.fyi', 344 'mastername': 'chromium.fyi',
345 'buildername': 'Site Isolation Linux', 345 'buildername': 'WebKit Linux slimming_paint_v2 Dummy Builder',
346 }), 346 }),
347 # Optional GPU bots. 347 # Optional GPU bots.
348 'linux_optional_gpu_tests_rel': { 348 'linux_optional_gpu_tests_rel': {
349 'bot_ids': [ 349 'bot_ids': [
350 { 350 {
351 'mastername': 'chromium.gpu.fyi', 351 'mastername': 'chromium.gpu.fyi',
352 'buildername': 'GPU Linux Builder', 352 'buildername': 'GPU Linux Builder',
353 'tester': 'Optional Linux Release (NVIDIA)', 353 'tester': 'Optional Linux Release (NVIDIA)',
354 }, 354 },
355 ], 355 ],
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 'mastername': 'client.v8.fyi', 555 'mastername': 'client.v8.fyi',
556 'buildername': 'V8 Linux GN', 556 'buildername': 'V8 Linux GN',
557 }), 557 }),
558 'v8_android_chromium_gn_dbg': simple_bot({ 558 'v8_android_chromium_gn_dbg': simple_bot({
559 'mastername': 'client.v8.fyi', 559 'mastername': 'client.v8.fyi',
560 'buildername': 'V8 Android GN (dbg)', 560 'buildername': 'V8 Android GN (dbg)',
561 }), 561 }),
562 }, 562 },
563 }, 563 },
564 }) 564 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698