Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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 Loading... | |
| 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) |
| OLD | NEW |