Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 2aa6980

Browse files
authored
Roll reclient forward (#52632)
For flutter/flutter#147750. Depends on flutter/buildroot#852. This PR rolls forward reclient, the buildroot, and our RBE configs. The new RBE configs do a few things. First they default the exec strategy to `racing`. Second, they add a local wrapper script that passes the correct value for `-fdebug-prefix-map` in both the local and remote cases. Finally, they remove the canonicalization of the build's working directory, so that the remote working directory will have the same name as the local working directory. This solves the issue where the build working directory contained a mysterious `set_by_reclient/a` component.
1 parent f3ce5a5 commit 2aa6980

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

DEPS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ vars = {
4444
# See https://github.com/flutter/flutter/wiki/Engine-pre‐submits-and-post‐submits#post-submit
4545
'clang_version': 'git_revision:725656bdd885483c39f482a01ea25d67acf39c46',
4646

47-
'reclient_version': 'git_revision:2c9285bdffcfd1b21afb028d57494ff78761af81',
47+
'reclient_version': 'git_revision:29a9d3cb597b6a7d67fa3e9aa8a7cab1c81232ee',
4848

4949
'gcloud_version': 'version:2@444.0.0.chromium.3',
5050

@@ -277,7 +277,7 @@ allowed_hosts = [
277277
]
278278

279279
deps = {
280-
'src': 'https://github.com/flutter/buildroot.git' + '@' + 'c5f0206b6fd70a85a41718f0bc6481b7c5348026',
280+
'src': 'https://github.com/flutter/buildroot.git' + '@' + 'b55755acbe3d771f2c0f9da708af4bc9477b91d7',
281281

282282
'src/flutter/third_party/depot_tools':
283283
Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '580b4ff3f5cd0dcaa2eacda28cefe0f45320e8f7',
@@ -946,7 +946,7 @@ deps = {
946946
'packages': [
947947
{
948948
'package': 'flutter_internal/rbe/reclient_cfgs',
949-
'version': 'ZuU_165luvP45DTYUP6WlEXb5EXyVxEuAm45ZB1c3zoC',
949+
'version': 'XIomtC8MFuQrF9qI5xYcFfcfKXZTbcY6nL6NgF-pSRIC',
950950
}
951951
],
952952
'condition': 'use_rbe',

tools/pkg/engine_build_configs/lib/src/build_config_runner.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ final class BuildRunner extends Runner {
356356
final List<String> bootstrapCommand = <String>[
357357
bootstrapPath,
358358
'--re_proxy=$reproxyPath',
359-
'--automatic_auth=true',
359+
'--use_application_default_credentials',
360360
if (shutdown) '--shutdown' else ...<String>['--cfg=$reclientConfigPath'],
361361
];
362362
if (!processRunner.processManager.canRun(bootstrapPath)) {

0 commit comments

Comments
 (0)