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

Side by Side Diff: tools/mb/mb_config.pyl

Issue 2841253002: Remove/rename obsolete precise64 official builders. (Closed)
Patch Set: Remove/rename obsolete precise64 official builders. Created 3 years, 7 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 | no next file » | 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 # This is a .pyl, or "Python Literal", file. You can treat it just like a 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a
6 # .json file, with the following exceptions: 6 # .json file, with the following exceptions:
7 # * all keys must be quoted (use single quotes, please); 7 # * all keys must be quoted (use single quotes, please);
8 # * comments are allowed, using '#' syntax; and 8 # * comments are allowed, using '#' syntax; and
9 # * trailing commas are allowed. 9 # * trailing commas are allowed.
10 10
(...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 'Linux Canary': 'debug_bot', 420 'Linux Canary': 'debug_bot',
421 'Linux Dev': 'debug_bot', 421 'Linux Dev': 'debug_bot',
422 'Mac Dev': 'debug_bot', 422 'Mac Dev': 'debug_bot',
423 'Windows Dev': 'debug_bot', 423 'Windows Dev': 'debug_bot',
424 }, 424 },
425 425
426 'official.desktop': { 426 'official.desktop': {
427 'linux64': 'official', 427 'linux64': 'official',
428 'mac64': 'official', 428 'mac64': 'official',
429 'mac64-recipes': 'official', 429 'mac64-recipes': 'official',
430 'precise64': 'official_six_concurrent_links',
431 430
432 # Currently the official bots set mini_installer_official_deps=1 431 # Currently the official bots set mini_installer_official_deps=1
433 # but it's not clear if that's actually used anywhere. 432 # but it's not clear if that's actually used anywhere.
434 'win': 'official_x86', 433 'win': 'official_x86',
435 'win-asan': 'official_syzyasan_x86', 434 'win-asan': 'official_syzyasan_x86',
436 'win-clang': 'official_clang_x86', 435 'win-clang': 'official_clang_x86',
437 'win-pgo': { 436 'win-pgo': {
438 '1': 'official_chrome_pgo_phase_1_x86', 437 '1': 'official_chrome_pgo_phase_1_x86',
439 '2': 'official_chrome_pgo_phase_2_x86', 438 '2': 'official_chrome_pgo_phase_2_x86',
440 }, 439 },
441 'win64': 'official', 440 'win64': 'official',
442 'win64-clang': 'official_clang', 441 'win64-clang': 'official_clang',
443 'win64-pgo': { 442 'win64-pgo': {
444 '1': 'official_chrome_pgo_phase_1', 443 '1': 'official_chrome_pgo_phase_1',
445 '2': 'official_chrome_pgo_phase_2', 444 '2': 'official_chrome_pgo_phase_2',
446 }, 445 },
447 # TODO(mmoss): Remove this once official recipes are working and this 446 # TODO(mmoss): Remove this once all official Windows recipes are working.
448 # just becomes the regular "win64-pgo" builder. 447 'win-recipes': 'official',
449 'win64-pgo-recipes': {
450 '1': 'official_chrome_pgo_phase_1',
451 '2': 'official_chrome_pgo_phase_2',
452 },
453 }, 448 },
454 449
455 'official.desktop.continuous': { 450 'official.desktop.continuous': {
456 'mac beta': 'official', 451 'mac beta': 'official',
457 'mac stable': 'official', 452 'mac stable': 'official',
458 'mac trunk': 'official', 453 'mac trunk': 'official',
454 'linux64 beta': 'official_six_concurrent_links',
455 'linux64 stable': 'official_six_concurrent_links',
456 'linux64 trunk': 'official_six_concurrent_links',
457 # TODO(mmoss): These precise64 entries can go away once the newly renamed
458 # builders are fully deployed.
459 'precise64 beta': 'official_six_concurrent_links', 459 'precise64 beta': 'official_six_concurrent_links',
460 'precise64 stable': 'official_six_concurrent_links', 460 'precise64 stable': 'official_six_concurrent_links',
461 'precise64 trunk': 'official_six_concurrent_links', 461 'precise64 trunk': 'official_six_concurrent_links',
462 'win beta': 'official_six_concurrent_links', 462 'win beta': 'official_six_concurrent_links',
463 'win stable': 'official_six_concurrent_links', 463 'win stable': 'official_six_concurrent_links',
464 'win trunk': 'official_six_concurrent_links', 464 'win trunk': 'official_six_concurrent_links',
465 'win64 trunk': 'official_six_concurrent_links', 465 'win64 trunk': 'official_six_concurrent_links',
466 }, 466 },
467 467
468 'tryserver.blink': { 468 'tryserver.blink': {
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1929 1929
1930 'x64': { 1930 'x64': {
1931 'gn_args': 'target_cpu="x64"', 1931 'gn_args': 'target_cpu="x64"',
1932 }, 1932 },
1933 1933
1934 'x86': { 1934 'x86': {
1935 'gn_args': 'target_cpu="x86"', 1935 'gn_args': 'target_cpu="x86"',
1936 }, 1936 },
1937 }, 1937 },
1938 } 1938 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698