Skip to content
forked from

Commit

Permalink
mb: replace use_goma with use_remoteexec
Browse files Browse the repository at this point in the history
This is preparation CL for https://crrev.com/c/4970657.

(cherry picked from commit d0d5faa)

Bug: b/306109834
Change-Id: I6b89ef515f542762a1426087047c1d4489526bbd
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4970736
Commit-Queue: Takuto Ikuta <[email protected]>
Reviewed-by: Liviu Rau <[email protected]>
Reviewed-by: Michael Achenbach <[email protected]>
Cr-Original-Commit-Position: refs/heads/main@{#90550}
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5197797
Commit-Queue: Michael Achenbach <[email protected]>
Reviewed-by: Igor Sheludko <[email protected]>
Cr-Commit-Position: refs/branch-heads/11.4@{v8#73}
Cr-Branched-From: 8a8a1e7-refs/heads/11.4.183@{#1}
Cr-Branched-From: 5483d8e-refs/heads/main@{#87241}
  • Loading branch information
Takuto Ikuta authored and V8 LUCI CQ committed Jan 16, 2024
1 parent bfb0339 commit 4f404aa
Showing 1 changed file with 17 additions and 21 deletions.
38 changes: 17 additions & 21 deletions infra/mb/mb_config.pyl
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@
'release_x64_gcmole': [
'release_bot', 'x64', 'gcmole'],
'release_x64_msvc': [
'release_bot_no_goma', 'x64', 'minimal_symbols', 'msvc'],
'release_bot_no_reclient', 'x64', 'minimal_symbols', 'msvc'],
'release_x64_correctness_fuzzer' : [
'release_bot', 'x64', 'v8_correctness_fuzzer'],
'release_x64_disable_runtime_call_stats': [
Expand All @@ -565,7 +565,7 @@
'release_x64_fuchsia_trybot': [
'release_trybot', 'x64', 'fuchsia'],
'release_x64_gcc': [
'release_bot_no_goma', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
'release_bot_no_reclient', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
'release_x64_ios_simulator': [
'release_bot', 'x64', 'ios_simulator'],
'release_x64_internal': [
Expand Down Expand Up @@ -622,7 +622,7 @@
'debug_x64_asan': [
'debug_bot', 'x64', 'asan', 'lsan'],
'debug_x64_asan_no_lsan_static': [
'debug', 'static', 'goma', 'v8_enable_slow_dchecks', 'v8_optimized_debug',
'debug', 'static', 'reclient', 'v8_enable_slow_dchecks', 'v8_optimized_debug',
'x64', 'asan'],
'debug_x64_conservative_stack_scanning': [
'debug_bot', 'x64', 'conservative_stack_scanning'],
Expand All @@ -635,7 +635,7 @@
'debug_x64_fuchsia': [
'debug_bot', 'x64', 'fuchsia'],
'debug_x64_gcc': [
'debug_bot_no_goma', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
'debug_bot_no_reclient', 'x64', 'gcc', 'lld', 'no_custom_libcxx'],
'debug_x64_header_includes': [
'debug_bot', 'x64', 'v8_check_header_includes'],
'debug_x64_minimal_symbols': [
Expand Down Expand Up @@ -668,15 +668,15 @@
'debug_x86_minimal_symbols': [
'debug_bot', 'x86', 'minimal_symbols'],
'debug_x86_msvc': [
'debug_bot_no_goma', 'x86', 'minimal_symbols', 'msvc'],
'debug_bot_no_reclient', 'x86', 'minimal_symbols', 'msvc'],
'debug_x86_no_i18n': [
'debug_bot', 'x86', 'v8_no_i18n'],
'debug_x86_trybot': [
'debug_trybot', 'x86'],
'debug_x86_vtunejit': [
'debug_bot', 'x86', 'v8_enable_vtunejit'],
'full_debug_x86': [
'debug', 'x86', 'goma', 'v8_enable_slow_dchecks', 'v8_full_debug'],
'debug', 'x86', 'reclient', 'v8_enable_slow_dchecks', 'v8_full_debug'],

# Release configs for x86.
'release_x86': [
Expand All @@ -697,7 +697,7 @@
'release_x64_predictable': [
'release_bot', 'x64', 'v8_enable_verify_predictable'],
'release_x86_shared_verify_heap': [
'release', 'x86', 'goma', 'shared', 'v8_verify_heap'],
'release', 'x86', 'reclient', 'shared', 'v8_verify_heap'],
'release_x86_trybot': [
'release_trybot', 'x86'],
'release_x86_verify_csa': [
Expand Down Expand Up @@ -785,19 +785,19 @@

'debug_bot_no_slow_dchecks': {
'mixins': [
'debug', 'shared', 'goma', 'v8_disable_slow_dchecks',
'debug', 'shared', 'reclient', 'v8_disable_slow_dchecks',
'v8_optimized_debug', 'v8_enable_google_benchmark'],
},

'debug_bot': {
'mixins': [
'debug', 'shared', 'goma', 'v8_enable_slow_dchecks',
'debug', 'shared', 'reclient', 'v8_enable_slow_dchecks',
'v8_optimized_debug', 'v8_enable_google_benchmark'],
},

'debug_bot_no_goma': {
'debug_bot_no_reclient': {
'mixins': [
'debug', 'shared', 'no_goma', 'v8_enable_slow_dchecks',
'debug', 'shared', 'no_reclient', 'v8_enable_slow_dchecks',
'v8_optimized_debug'],
},

Expand Down Expand Up @@ -839,10 +839,6 @@
'gn_args': 'v8_gcmole=true',
},

'goma': {
'gn_args': 'use_goma=true',
},

'hard_float': {
'gn_args': 'arm_float_abi="hard"',
},
Expand Down Expand Up @@ -882,8 +878,8 @@
'gn_args': 'use_custom_libcxx=false',
},

'no_goma': {
'gn_args': 'use_goma=false',
'no_reclient': {
'gn_args': 'use_remoteexec=false',
},

'no_sandbox': {
Expand All @@ -907,15 +903,15 @@
},

'release_bot': {
'mixins': ['release', 'static', 'goma', 'v8_enable_google_benchmark'],
'mixins': ['release', 'static', 'reclient', 'v8_enable_google_benchmark'],
},

'release_bot_no_goma': {
'mixins': ['release', 'static', 'no_goma'],
'release_bot_no_reclient': {
'mixins': ['release', 'static', 'no_reclient'],
},

'release_bot_reclient': {
'mixins': ['release', 'static', 'no_goma', 'reclient'],
'mixins': ['release', 'static', 'reclient'],
},

'release_trybot': {
Expand Down

0 comments on commit 4f404aa

Please sign in to comment.