Chromium Code Reviews| Index: scripts/slave/recipe_modules/v8/builders.py |
| diff --git a/scripts/slave/recipe_modules/v8/builders.py b/scripts/slave/recipe_modules/v8/builders.py |
| index 2f65056c34fbd0e534d935f4fe51a9a1d9f19fc1..ba3caceb4c9102178607e4379f6b989b27d9431d 100644 |
| --- a/scripts/slave/recipe_modules/v8/builders.py |
| +++ b/scripts/slave/recipe_modules/v8/builders.py |
| @@ -503,6 +503,19 @@ BUILDERS = { |
| 'tests': [Mjsunit], |
| 'testing': {'platform': 'linux'}, |
| }, |
| + 'V8 Linux64 - gyp': { |
| + 'chromium_apply_config': [ |
| + 'v8_ninja', 'default_compiler', 'goma', 'mb', |
| + ], |
| + 'v8_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'builder_tester', |
| + 'enable_swarming': True, |
| + 'tests': [V8Testing], |
| + 'testing': {'platform': 'linux'}, |
| + }, |
| ####### Category: Windows |
| 'V8 Win32 - builder': { |
| 'chromium_apply_config': [ |
| @@ -1776,6 +1789,33 @@ BUILDERS = { |
| ], |
| 'testing': {'platform': 'linux'}, |
| }, |
| + 'v8_linux64_gyp_rel_ng': { |
| + 'chromium_apply_config': [ |
| + 'default_compiler', 'v8_ninja', 'goma', 'no_dcheck', 'mb'], |
| + 'v8_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'builder', |
| + 'enable_swarming': True, |
| + 'slim_swarming_builder': True, |
| + 'triggers': [ |
| + 'v8_linux64_gyp_rel_ng_triggered', |
| + ], |
| + 'testing': {'platform': 'linux'}, |
| + }, |
| + 'v8_linux64_gyp_rel_ng_triggered': { |
| + 'chromium_apply_config': ['no_dcheck'], |
|
Michael Achenbach
2016/07/06 09:58:29
No dchecks as we only have a continuous release bo
|
| + 'v8_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'tester', |
| + 'parent_buildername': 'v8_linux64_gyp_rel_ng', |
| + 'enable_swarming': True, |
| + 'tests': [V8Testing], |
| + 'testing': {'platform': 'linux'}, |
| + }, |
| 'v8_linux64_avx2_rel_ng': { |
| 'chromium_apply_config': [ |
| 'default_compiler', 'v8_ninja', 'goma', 'mb'], |