Skip to content

Commit

Permalink
Fuchsia Test Runner: enable ffx repository server
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Jeff-A-Martin committed Aug 7, 2024
1 parent 8d00669 commit 5db9d43
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/ci/docker/scripts/fuchsia-test-runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5db9d43

Please sign in to comment.