From 9057e23671d78c3c1856b31b9b21481ff5fe54fb Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Wed, 10 Jun 2026 12:52:31 -0700 Subject: [PATCH] Use a separate environment variable for RBE_expensive_exec_strategy. The bots set RBE_exec_strategy=remote_local_fallback, which we don't want to override racing for the Dart actions. Change-Id: I8739dc04af183fe2011e2589bd5480fd5a2daca1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/511001 Reviewed-by: Alexander Aprelev Commit-Queue: Ryan Macnak --- tools/gn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/gn.py b/tools/gn.py index 295e792a0df..6793db15ef6 100755 --- a/tools/gn.py +++ b/tools/gn.py @@ -449,7 +449,7 @@ def AddCommonGnOptionArgs(parser): os.environ.get('DART_RBE') == '1' or \ os.environ.get('RBE_cfg') != None) parser.add_argument('--rbe-expensive-exec-strategy', - default=os.environ.get('RBE_exec_strategy'), + default=os.environ.get('RBE_expensive_exec_strategy'), help='Strategy for expensive RBE compilations', type=str)