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

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

Issue 2357493005: Add trusty builders on chromium.linux & tryserver.chromium.linux (Closed)
Patch Set: rebased 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 # Optional GPU bots. 379 # Optional GPU bots.
380 'linux_optional_gpu_tests_rel': { 380 'linux_optional_gpu_tests_rel': {
381 'bot_ids': [ 381 'bot_ids': [
382 { 382 {
383 'mastername': 'chromium.gpu.fyi', 383 'mastername': 'chromium.gpu.fyi',
384 'buildername': 'GPU Linux Builder', 384 'buildername': 'GPU Linux Builder',
385 'tester': 'Optional Linux Release (NVIDIA)', 385 'tester': 'Optional Linux Release (NVIDIA)',
386 }, 386 },
387 ], 387 ],
388 }, 388 },
389 # Trusty
390 'linux_chromium_compile_trusty_dbg_32_ng': simple_bot({
391 'mastername': 'chromium.linux',
392 'buildername': 'Linux Builder Trusty (dbg)(32)',
393 }, analyze_mode='compile'),
394 'linux_chromium_trusty_dbg_32_ng': simple_bot({
395 'mastername': 'chromium.linux',
396 'buildername': 'Linux Builder Trusty (dbg)(32)',
397 'tester': 'Linux Tests Trusty (dbg)(1)(32)',
398 }),
399 # TODO(yyanagisawa): Also support GPU Linux Builder / NVIDIA tester
400 'linux_chromium_trusty_rel_ng': simple_bot({
401 'mastername': 'chromium.linux',
402 'buildername': 'Linux Builder Trusty',
403 'tester': 'Linux Tests Trusty',
404 }),
405 'linux_chromium_trusty_dbg_ng': simple_bot({
406 'mastername': 'chromium.linux',
407 'buildername': 'Linux Builder Trusty (dbg)',
408 'tester': 'Linux Tests Trusty (dbg)(1)',
409 }),
410 'linux_chromium_compile_trusty_rel_ng': simple_bot({
411 'mastername': 'chromium.linux',
412 'buildername': 'Linux Builder Trusty',
413 }, analyze_mode='compile'),
414 'linux_chromium_compile_trusty_dbg_ng': simple_bot({
415 'mastername': 'chromium.linux',
416 'buildername': 'Linux Builder Trusty (dbg)',
417 }, analyze_mode='compile'),
418 'cast_shell_linux_trusty': simple_bot({
419 'mastername': 'chromium.linux',
420 'buildername': 'Cast Linux Trusty',
421 }),
389 }, 422 },
390 }, 423 },
391 'tryserver.chromium.mac': { 424 'tryserver.chromium.mac': {
392 'builders': { 425 'builders': {
393 'mac_chromium_archive_rel_ng': simple_bot({ 426 'mac_chromium_archive_rel_ng': simple_bot({
394 'mastername': 'chromium', 427 'mastername': 'chromium',
395 'buildername': 'Mac', 428 'buildername': 'Mac',
396 }), 429 }),
397 'mac_chromium_dbg_ng': simple_bot({ 430 'mac_chromium_dbg_ng': simple_bot({
398 'mastername': 'chromium.mac', 431 'mastername': 'chromium.mac',
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 'mastername': 'client.v8.fyi', 605 'mastername': 'client.v8.fyi',
573 'buildername': 'V8 Linux GN', 606 'buildername': 'V8 Linux GN',
574 }), 607 }),
575 'v8_android_chromium_gn_dbg': simple_bot({ 608 'v8_android_chromium_gn_dbg': simple_bot({
576 'mastername': 'client.v8.fyi', 609 'mastername': 'client.v8.fyi',
577 'buildername': 'V8 Android GN (dbg)', 610 'buildername': 'V8 Android GN (dbg)',
578 }), 611 }),
579 }, 612 },
580 }, 613 },
581 }) 614 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698