Skip to content

Commit

Permalink
Unrolled build for rust-lang#128797
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#128797 - Jeff-A-Martin:fuchsia-test-runner, r=tmandry

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.
  • Loading branch information
rust-timer committed Aug 8, 2024
2 parents 0d65e5a + 5db9d43 commit 2dac96b
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 2dac96b

Please sign in to comment.