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

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

Issue 1556393002: V8 Buildbot: Add ignition tests to pure release trybot. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 11 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_linux_nodcheck_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 recipe_engine.types import freeze 8 from recipe_engine.types import freeze
9 9
10 10
(...skipping 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after
1620 'testing': {'platform': 'linux'}, 1620 'testing': {'platform': 'linux'},
1621 }, 1621 },
1622 'v8_linux_nodcheck_rel': { 1622 'v8_linux_nodcheck_rel': {
1623 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'no_dcheck'], 1623 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'no_dcheck'],
1624 'v8_config_kwargs': { 1624 'v8_config_kwargs': {
1625 'BUILD_CONFIG': 'Release', 1625 'BUILD_CONFIG': 'Release',
1626 'TARGET_BITS': 32, 1626 'TARGET_BITS': 32,
1627 }, 1627 },
1628 'bot_type': 'builder_tester', 1628 'bot_type': 'builder_tester',
1629 'enable_swarming': True, 1629 'enable_swarming': True,
1630 'tests': [V8Testing, Test262Variants_2, Mozilla, Benchmarks, SimdJs], 1630 'tests': [
1631 V8Testing,
1632 Test262Variants_2,
1633 Test262Ignition,
1634 Ignition,
1635 Mozilla,
1636 Benchmarks,
1637 SimdJs,
1638 ],
1631 'testing': {'platform': 'linux'}, 1639 'testing': {'platform': 'linux'},
1632 }, 1640 },
1633 'v8_linux_dbg': { 1641 'v8_linux_dbg': {
1634 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], 1642 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'],
1635 'v8_config_kwargs': { 1643 'v8_config_kwargs': {
1636 'BUILD_CONFIG': 'Debug', 1644 'BUILD_CONFIG': 'Debug',
1637 'TARGET_BITS': 32, 1645 'TARGET_BITS': 32,
1638 }, 1646 },
1639 'bot_type': 'builder_tester', 1647 'bot_type': 'builder_tester',
1640 'enable_swarming': True, 1648 'enable_swarming': True,
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
2387 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2395 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2388 2396
2389 BUILDERS = freeze(BUILDERS) 2397 BUILDERS = freeze(BUILDERS)
2390 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2398 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2391 2399
2392 def iter_builders(): 2400 def iter_builders():
2393 for mastername, master_config in BUILDERS.iteritems(): 2401 for mastername, master_config in BUILDERS.iteritems():
2394 builders = master_config['builders'] 2402 builders = master_config['builders']
2395 for buildername, bot_config in builders.iteritems(): 2403 for buildername, bot_config in builders.iteritems():
2396 yield mastername, builders, buildername, bot_config 2404 yield mastername, builders, buildername, bot_config
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_tryserver_v8_v8_linux_nodcheck_rel.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698