Commit 9347cae9 authored by machenbach's avatar machenbach Committed by Commit bot

Add linux64 mb configs.

Depends on https://codereview.chromium.org/2071583003/ to
skip redundant clang=1 configs.

BUG=chromium:616035
NOTRY=true

Review-Url: https://codereview.chromium.org/2071793002
Cr-Commit-Position: refs/heads/master@{#37050}
parent 7442f537
...@@ -6,26 +6,60 @@ ...@@ -6,26 +6,60 @@
# This is a map of buildbot master names -> buildbot builder names -> # This is a map of buildbot master names -> buildbot builder names ->
# config names (where each config name is a key in the 'configs' dict, # config names (where each config name is a key in the 'configs' dict,
# below). MB uses this dict to look up which config to use for a given bot. # below). MB uses this dict to look up which config to use for a given bot.
# Bots are ordered by appearance on waterfall.
'masters': { 'masters': {
'client.v8': { 'client.v8': {
'V8 Linux - swarming staging': 'gn_swarming_release', # Linux64.
'V8 Linux64 - builder': 'gyp_release_x64',
'V8 Linux64 - debug builder': 'gyp_debug_valgrind_x64',
'V8 Linux64 - custom snapshot - debug builder': 'gyp_debug_custom_x64',
'V8 Linux64 - internal snapshot': 'gyp_release_internal_x64',
# FYI.
'V8 Linux - swarming staging': 'gn_release_x64',
},
'tryserver.v8': {
'v8_linux64_rel_ng': 'gyp_release_x64_trybot',
'v8_linux64_avx2_rel_ng': 'gyp_release_x64_trybot',
'v8_linux64_avx2_dbg': 'gyp_debug_x64_trybot',
}, },
}, },
'configs': { 'configs': {
'gyp_swarming_release': [ 'gyp_debug_custom_x64': [
'release_bot', 'swarming', 'gyp'], 'gyp', 'debug_bot', 'swarming', 'v8_snapshot_custom', 'x64'],
'gn_swarming_release': [ 'gyp_debug_valgrind_x64': [
'release_bot', 'swarming', 'gn'], 'gyp', 'debug_bot', 'swarming', 'valgrind', 'x64'],
'gyp_debug_x64_trybot': [
'gyp', 'debug_trybot', 'swarming', 'x64'],
'gyp_release_x64': [
'gyp', 'release_bot', 'swarming', 'x64'],
'gyp_release_x64_trybot': [
'gyp', 'release_trybot', 'swarming', 'x64'],
'gyp_release_internal_x64': [
'gyp', 'release_bot', 'swarming', 'v8_snapshot_internal', 'x64'],
'gn_release_x64': [
'gn', 'release_bot', 'swarming', 'x64'],
}, },
'mixins': { 'mixins': {
'dcheck_always_on': {
'gn_args': 'dcheck_always_on=true',
'gyp_defines': 'dcheck_always_on=1',
},
'debug': { 'debug': {
'gyp_defines': 'v8_enable_slow_dchecks=1 v8_optimized_debug=1',
'gn_args': 'is_debug=true', 'gn_args': 'is_debug=true',
}, },
'debug_bot': { 'debug_bot': {
'mixins': ['debug', 'static', 'goma'], 'mixins': [
'debug', 'static', 'goma', 'v8_enable_slow_dchecks',
'v8_optimized_debug'],
},
'debug_trybot': {
'mixins': ['debug_bot', 'minimal_symbols'],
}, },
'gn': {'type': 'gn'}, 'gn': {'type': 'gn'},
...@@ -39,6 +73,11 @@ ...@@ -39,6 +73,11 @@
'gyp': {'type': 'gyp'}, 'gyp': {'type': 'gyp'},
'minimal_symbols': {
'gn_args': 'symbol_level=1',
'gyp_defines': 'fastbuild=1',
},
'release': { 'release': {
'gn_args': 'is_debug=false', 'gn_args': 'is_debug=false',
}, },
...@@ -47,6 +86,10 @@ ...@@ -47,6 +86,10 @@
'mixins': ['release', 'static', 'goma'], 'mixins': ['release', 'static', 'goma'],
}, },
'release_trybot': {
'mixins': ['release_bot', 'minimal_symbols', 'dcheck_always_on'],
},
'shared': { 'shared': {
'gn_args': 'is_component_build=true', 'gn_args': 'is_component_build=true',
'gyp_defines': 'component=shared_library', 'gyp_defines': 'component=shared_library',
...@@ -61,5 +104,42 @@ ...@@ -61,5 +104,42 @@
'gn_args': 'v8_test_isolation_mode="prepare"', 'gn_args': 'v8_test_isolation_mode="prepare"',
'gyp_defines': 'test_isolation_mode=prepare', 'gyp_defines': 'test_isolation_mode=prepare',
}, },
'valgrind': {
# TODO(machenbach): Add this to gn.
'gn_args': 'has_valgrind=true',
'gyp_defines': 'has_valgrind=1',
},
'v8_enable_slow_dchecks': {
'gn_args': v8_enable_slow_dchecks=true',
'gyp_defines': 'v8_enable_slow_dchecks=1',
},
'v8_optimized_debug': {
# This is the default in gn for debug.
'gyp_defines': 'v8_optimized_debug=1',
},
'v8_snapshot_custom': {
# TODO(machenbach): Add this to gn.
# Path needs to be relative to src/v8.gyp.
'gyp_defines': 'embed_script=../test/mjsunit/mjsunit.js',
},
'v8_snapshot_internal': {
'gn_args': 'v8_use_external_startup_data=false',
'gyp_defines': 'v8_use_external_startup_data=0',
},
'x64': {
'gn_args': 'target_cpu="x64"',
'gyp_defines': 'target_arch=x64',
},
'x86': {
'gn_args': 'target_cpu="x86"',
'gyp_defines': 'target_arch=ia32',
},
}, },
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment