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

Side by Side Diff: scripts/slave/recipe_modules/v8/builders.py

Issue 1276223002: V8 Buildbot: Add test262-es6 to linux64 trybot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # Contains the bulk of the V8 builder configurations so they can be reused 5 # Contains the bulk of the V8 builder configurations so they can be reused
6 # from multiple recipes. 6 # from multiple recipes.
7 7
8 from infra.libs.infra_types import freeze 8 from infra.libs.infra_types import freeze
9 9
10 BUILDERS = { 10 BUILDERS = {
(...skipping 1527 matching lines...) Expand 10 before | Expand all | Expand 10 after
1538 'BUILD_CONFIG': 'Release', 1538 'BUILD_CONFIG': 'Release',
1539 'TARGET_BITS': 64, 1539 'TARGET_BITS': 64,
1540 }, 1540 },
1541 'bot_type': 'builder_tester', 1541 'bot_type': 'builder_tester',
1542 'tests': [ 1542 'tests': [
1543 'v8initializers', 1543 'v8initializers',
1544 'unittests', 1544 'unittests',
1545 'v8testing', 1545 'v8testing',
1546 'optimize_for_size', 1546 'optimize_for_size',
1547 'webkit', 1547 'webkit',
1548 'test262_es6',
1548 'simdjs', 1549 'simdjs',
1549 ], 1550 ],
1550 'testing': {'platform': 'linux'}, 1551 'testing': {'platform': 'linux'},
1551 }, 1552 },
1552 'v8_linux64_avx2_rel': { 1553 'v8_linux64_avx2_rel': {
1553 'chromium_apply_config': ['v8_goma'], 1554 'chromium_apply_config': ['v8_goma'],
1554 'v8_config_kwargs': { 1555 'v8_config_kwargs': {
1555 'BUILD_CONFIG': 'Release', 1556 'BUILD_CONFIG': 'Release',
1556 'TARGET_BITS': 64, 1557 'TARGET_BITS': 64,
1557 }, 1558 },
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after
1973 dart_linux_release['chromium_apply_config'].extend(['v8_goma']) 1974 dart_linux_release['chromium_apply_config'].extend(['v8_goma'])
1974 1975
1975 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] 1976 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release']
1976 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) 1977 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma'])
1977 1978
1978 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] 1979 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release']
1979 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 1980 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
1980 1981
1981 BUILDERS = freeze(BUILDERS) 1982 BUILDERS = freeze(BUILDERS)
1982 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 1983 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux64_rel.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698