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

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

Issue 1403463002: V8 Buildbot: Pass isolate hashes from builder to tester. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 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
« no previous file with comments | « scripts/slave/recipe_modules/v8/api.py ('k') | scripts/slave/recipes/v8.py » ('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 BUILDERS = { 10 BUILDERS = {
(...skipping 23 matching lines...) Expand all
34 }, 34 },
35 'V8 Linux - swarming staging builder': { 35 'V8 Linux - swarming staging builder': {
36 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], 36 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'],
37 'v8_config_kwargs': { 37 'v8_config_kwargs': {
38 'BUILD_CONFIG': 'Release', 38 'BUILD_CONFIG': 'Release',
39 'TARGET_BITS': 32, 39 'TARGET_BITS': 32,
40 }, 40 },
41 'bot_type': 'builder', 41 'bot_type': 'builder',
42 'build_gs_archive': 'linux_swarming_staging_archive', 42 'build_gs_archive': 'linux_swarming_staging_archive',
43 'enable_swarming': True, 43 'enable_swarming': True,
44 'testing': {'platform': 'linux'}, 44 'testing': {
45 'platform': 'linux',
46 'isolated_tests': {'default': '[dummy hash for default]'},
kjellander_chromium 2015/10/09 08:05:03 This looks like test data to me, should it really
Paweł Hajdan Jr. 2015/10/09 08:22:09 FWIW I'm fine with this. Alternatively, maybe I di
Michael Achenbach 2015/10/09 08:25:00 I'd like to do this smarter. Right now, there is l
47 },
45 'triggers': [ 48 'triggers': [
46 'V8 Linux - swarming staging', 49 'V8 Linux - swarming staging',
47 ], 50 ],
48 }, 51 },
49 'V8 Linux - debug builder': { 52 'V8 Linux - debug builder': {
50 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'], 53 'chromium_apply_config': ['clang', 'v8_ninja', 'goma'],
51 'v8_config_kwargs': { 54 'v8_config_kwargs': {
52 'BUILD_CONFIG': 'Debug', 55 'BUILD_CONFIG': 'Debug',
53 'TARGET_BITS': 32, 56 'TARGET_BITS': 32,
54 }, 57 },
(...skipping 1971 matching lines...) Expand 10 before | Expand all | Expand 10 after
2026 ['clang', 'v8_ninja', 'goma']) 2029 ['clang', 'v8_ninja', 'goma'])
2027 2030
2028 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release'] 2031 dart_mac_release = BUILDERS['client.dart.fyi']['builders']['v8-mac-release']
2029 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma']) 2032 dart_mac_release['chromium_apply_config'].extend(['v8_ninja', 'clang', 'goma'])
2030 2033
2031 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release'] 2034 dart_win_release = BUILDERS['client.dart.fyi']['builders']['v8-win-release']
2032 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) 2035 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013'])
2033 2036
2034 BUILDERS = freeze(BUILDERS) 2037 BUILDERS = freeze(BUILDERS)
2035 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) 2038 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS)
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/v8/api.py ('k') | scripts/slave/recipes/v8.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698