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

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

Issue 2423083002: V8: Add valgrind deps to linux64 bots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 2 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_client_v8_V8_Linux64___builder.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 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral 9 from testing import V8NoExhaustiveVariants, V8Variant, V8VariantNeutral
10 10
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 'BUILD_CONFIG': 'Debug', 341 'BUILD_CONFIG': 'Debug',
342 'TARGET_BITS': 32, 342 'TARGET_BITS': 32,
343 }, 343 },
344 'bot_type': 'builder_tester', 344 'bot_type': 'builder_tester',
345 'tests': [V8Testing, Mozilla, Test262, SimdJs], 345 'tests': [V8Testing, Mozilla, Test262, SimdJs],
346 'variants': V8NoExhaustiveVariants(), 346 'variants': V8NoExhaustiveVariants(),
347 'testing': {'platform': 'linux'}, 347 'testing': {'platform': 'linux'},
348 }, 348 },
349 ####### Category: Linux64 349 ####### Category: Linux64
350 'V8 Linux64 - builder': { 350 'V8 Linux64 - builder': {
351 'gclient_apply_config': ['v8_valgrind'],
351 'chromium_apply_config': [ 352 'chromium_apply_config': [
352 'default_compiler', 'v8_ninja', 'goma', 'mb'], 353 'default_compiler', 'v8_ninja', 'goma', 'mb'],
353 'v8_config_kwargs': { 354 'v8_config_kwargs': {
354 'BUILD_CONFIG': 'Release', 355 'BUILD_CONFIG': 'Release',
355 'TARGET_BITS': 64, 356 'TARGET_BITS': 64,
356 }, 357 },
357 'bot_type': 'builder', 358 'bot_type': 'builder',
358 'build_gs_archive': 'linux64_rel_archive', 359 'build_gs_archive': 'linux64_rel_archive',
359 'enable_swarming': True, 360 'enable_swarming': True,
360 'testing': {'platform': 'linux'}, 361 'testing': {'platform': 'linux'},
(...skipping 1491 matching lines...) Expand 10 before | Expand all | Expand 10 after
1852 'v8_ninja', 'no_dcheck', 'gcc', 'goma', 'mb'], 1853 'v8_ninja', 'no_dcheck', 'gcc', 'goma', 'mb'],
1853 'v8_config_kwargs': { 1854 'v8_config_kwargs': {
1854 'BUILD_CONFIG': 'Release', 1855 'BUILD_CONFIG': 'Release',
1855 'TARGET_BITS': 32, 1856 'TARGET_BITS': 32,
1856 }, 1857 },
1857 'bot_type': 'builder_tester', 1858 'bot_type': 'builder_tester',
1858 'tests': [V8Testing], 1859 'tests': [V8Testing],
1859 'testing': {'platform': 'linux'}, 1860 'testing': {'platform': 'linux'},
1860 }, 1861 },
1861 'v8_linux64_rel_ng': { 1862 'v8_linux64_rel_ng': {
1863 'gclient_apply_config': ['v8_valgrind'],
1862 'chromium_apply_config': [ 1864 'chromium_apply_config': [
1863 'default_compiler', 'v8_ninja', 'goma', 'mb'], 1865 'default_compiler', 'v8_ninja', 'goma', 'mb'],
1864 'v8_config_kwargs': { 1866 'v8_config_kwargs': {
1865 'BUILD_CONFIG': 'Release', 1867 'BUILD_CONFIG': 'Release',
1866 'TARGET_BITS': 64, 1868 'TARGET_BITS': 64,
1867 }, 1869 },
1868 'bot_type': 'builder', 1870 'bot_type': 'builder',
1869 'enable_swarming': True, 1871 'enable_swarming': True,
1870 'slim_swarming_builder': True, 1872 'slim_swarming_builder': True,
1871 'triggers': [ 1873 'triggers': [
(...skipping 898 matching lines...) Expand 10 before | Expand all | Expand 10 after
2770 win['chromium_apply_config'].extend(['msvs2013']) 2772 win['chromium_apply_config'].extend(['msvs2013'])
2771 2773
2772 BUILDERS = freeze(BUILDERS) 2774 BUILDERS = freeze(BUILDERS)
2773 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2775 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2774 2776
2775 def iter_builders(): 2777 def iter_builders():
2776 for mastername, master_config in BUILDERS.iteritems(): 2778 for mastername, master_config in BUILDERS.iteritems():
2777 builders = master_config['builders'] 2779 builders = master_config['builders']
2778 for buildername, bot_config in builders.iteritems(): 2780 for buildername, bot_config in builders.iteritems():
2779 yield mastername, builders, buildername, bot_config 2781 yield mastername, builders, buildername, bot_config
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Linux64___builder.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698