From 5db9d432070087c13330e85221010671174025d5 Mon Sep 17 00:00:00 2001 From: Jeff Martin Date: Wed, 7 Aug 2024 16:08:41 -0400 Subject: [PATCH] Fuchsia Test Runner: enable ffx repository server The default repository server setting has changed on Fuchsia (default is newly "false"). Now, in order to start the repository server, the config `repository.server.enabled` must be set to true. --- src/ci/docker/scripts/fuchsia-test-runner.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/ci/docker/scripts/fuchsia-test-runner.py b/src/ci/docker/scripts/fuchsia-test-runner.py index 00269e68422d3..a5458b8645d7f 100755 --- a/src/ci/docker/scripts/fuchsia-test-runner.py +++ b/src/ci/docker/scripts/fuchsia-test-runner.py @@ -571,6 +571,19 @@ def start(self): ) # Start repository server + # Note that we must first enable the repository server daemon. + check_call_with_logging( + [ + ffx_path, + "config", + "set", + "repository.server.enabled", + "true", + ], + env=ffx_env, + stdout_handler=self.subprocess_logger.debug, + stderr_handler=self.subprocess_logger.debug, + ) check_call_with_logging( [ ffx_path,