diff options
| author | bors <bors@rust-lang.org> | 2024-08-08 04:10:56 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-08 04:10:56 +0000 |
| commit | 9337f7afa6fda07e60d6aa5ee88e692878446782 (patch) | |
| tree | 2019b72b159783d08d58c0adf3166e37999072fe /src/ci/docker/scripts | |
| parent | 0d65e5a1806db2662ba6a34d89c3b4bc506fb59a (diff) | |
| parent | 36b9aee9479a6c372e914e0008054fccaf56f0a6 (diff) | |
| download | rust-9337f7afa6fda07e60d6aa5ee88e692878446782.tar.gz rust-9337f7afa6fda07e60d6aa5ee88e692878446782.zip | |
Auto merge of #128805 - tgross35:rollup-wajzi6w, r=tgross35
Rollup of 7 pull requests Successful merges: - #128520 (Skip over args when determining if async-closure's inner coroutine consumes its upvars) - #128552 (Emit an error for invalid use of the `#[no_sanitize]` attribute) - #128691 (Update `compiler-builtins` to 0.1.117) - #128702 (Add -Zmetrics-dir=PATH to save diagnostic metadata to disk) - #128797 (Fuchsia Test Runner: enable ffx repository server) - #128798 (refactor(rustc_expand::mbe): Don't require full ExtCtxt when not necessary) - #128800 (Add tracking issue to core-pattern-type) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/ci/docker/scripts')
| -rwxr-xr-x | src/ci/docker/scripts/fuchsia-test-runner.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ci/docker/scripts/fuchsia-test-runner.py b/src/ci/docker/scripts/fuchsia-test-runner.py index 00269e68422..a5458b8645d 100755 --- a/src/ci/docker/scripts/fuchsia-test-runner.py +++ b/src/ci/docker/scripts/fuchsia-test-runner.py @@ -571,6 +571,19 @@ class TestEnvironment: ) # 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, |
