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

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

Issue 1576933002: Partial revert of V8 Buildbot: Switch remaining mac bots to swarming. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
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
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Mac64_ASAN.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 1395 matching lines...) Expand 10 before | Expand all | Expand 10 after
1406 'tests': [SimpleLeak], 1406 'tests': [SimpleLeak],
1407 'testing': {'platform': 'linux'}, 1407 'testing': {'platform': 'linux'},
1408 }, 1408 },
1409 'V8 Mac64 ASAN': { 1409 'V8 Mac64 ASAN': {
1410 'chromium_apply_config': ['v8_ninja', 'clang', 'asan', 'goma'], 1410 'chromium_apply_config': ['v8_ninja', 'clang', 'asan', 'goma'],
1411 'v8_config_kwargs': { 1411 'v8_config_kwargs': {
1412 'BUILD_CONFIG': 'Release', 1412 'BUILD_CONFIG': 'Release',
1413 'TARGET_BITS': 64, 1413 'TARGET_BITS': 64,
1414 }, 1414 },
1415 'bot_type': 'builder_tester', 1415 'bot_type': 'builder_tester',
1416 'enable_swarming': True, 1416 'enable_swarming': False,
1417 'tests': [V8Testing_2], 1417 'tests': [V8Testing],
1418 'swarming_dimensions': { 1418 'swarming_dimensions': {
1419 'os': 'Mac-10.9', 1419 'os': 'Mac-10.9',
1420 'cpu': 'x86-64', 1420 'cpu': 'x86-64',
1421 }, 1421 },
1422 'testing': {'platform': 'mac'}, 1422 'testing': {'platform': 'mac'},
1423 }, 1423 },
1424 ####### Category: FYI 1424 ####### Category: FYI
1425 'V8 Linux64 - gcov coverage': { 1425 'V8 Linux64 - gcov coverage': {
1426 'v8_apply_config': ['gcov_coverage'], 1426 'v8_apply_config': ['gcov_coverage'],
1427 'chromium_apply_config': [ 1427 'chromium_apply_config': [
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
2085 'clang', 2085 'clang',
2086 'asan', 2086 'asan',
2087 'goma', 2087 'goma',
2088 'no_dcheck', 2088 'no_dcheck',
2089 ], 2089 ],
2090 'v8_config_kwargs': { 2090 'v8_config_kwargs': {
2091 'BUILD_CONFIG': 'Release', 2091 'BUILD_CONFIG': 'Release',
2092 'TARGET_BITS': 64, 2092 'TARGET_BITS': 64,
2093 }, 2093 },
2094 'bot_type': 'builder_tester', 2094 'bot_type': 'builder_tester',
2095 'enable_swarming': True, 2095 'enable_swarming': False,
2096 'tests': [V8Testing_2], 2096 'tests': [V8Testing],
2097 'swarming_dimensions': { 2097 'swarming_dimensions': {
2098 'os': 'Mac-10.9', 2098 'os': 'Mac-10.9',
2099 'cpu': 'x86-64', 2099 'cpu': 'x86-64',
2100 }, 2100 },
2101 'testing': {'platform': 'mac'}, 2101 'testing': {'platform': 'mac'},
2102 }, 2102 },
2103 'v8_linux_arm_rel': { 2103 'v8_linux_arm_rel': {
2104 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'simulate_arm'], 2104 'chromium_apply_config': ['clang', 'v8_ninja', 'goma', 'simulate_arm'],
2105 'v8_config_kwargs': { 2105 'v8_config_kwargs': {
2106 'BUILD_CONFIG': 'Release', 2106 'BUILD_CONFIG': 'Release',
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
2370 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2370 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2371 2371
2372 BUILDERS = freeze(BUILDERS) 2372 BUILDERS = freeze(BUILDERS)
2373 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2373 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
2374 2374
2375 def iter_builders(): 2375 def iter_builders():
2376 for mastername, master_config in BUILDERS.iteritems(): 2376 for mastername, master_config in BUILDERS.iteritems():
2377 builders = master_config['builders'] 2377 builders = master_config['builders']
2378 for buildername, bot_config in builders.iteritems(): 2378 for buildername, bot_config in builders.iteritems():
2379 yield mastername, builders, buildername, bot_config 2379 yield mastername, builders, buildername, bot_config
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/v8.expected/full_client_v8_V8_Mac64_ASAN.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698