diff options
| author | Eric Huss <eric@huss.org> | 2025-03-03 07:15:34 -0800 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2025-03-03 07:15:34 -0800 |
| commit | 93b8279f4fca7631ca8585ebcc9ed6b31ec57173 (patch) | |
| tree | efe9c11b5d609f38d4b4b919cbedede536487414 | |
| parent | 81d8edc2000aa38b08ad09fce22d90f1990b6459 (diff) | |
| download | rust-93b8279f4fca7631ca8585ebcc9ed6b31ec57173.tar.gz rust-93b8279f4fca7631ca8585ebcc9ed6b31ec57173.zip | |
Fix docker run-local docs
| -rw-r--r-- | src/ci/docker/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/README.md b/src/ci/docker/README.md index a1a3a1c37ce..20b6f7d10ef 100644 --- a/src/ci/docker/README.md +++ b/src/ci/docker/README.md @@ -11,12 +11,12 @@ the [`jobs.yml`](../github-actions/jobs.yml) file. To run a specific CI job locally, you can use the `citool` Rust crate: ``` -cargo --manifest-path src/ci/citool/Cargo.toml run run-local <job-name> +cargo run --manifest-path src/ci/citool/Cargo.toml run-local <job-name> ``` For example, to run the `x86_64-gnu-llvm-18-1` job: ``` -cargo --manifest-path src/ci/citool/Cargo.toml run run-local x86_64-gnu-llvm-18-1 +cargo run --manifest-path src/ci/citool/Cargo.toml run-local x86_64-gnu-llvm-18-1 ``` The job will output artifacts in an `obj/<image-name>` dir at the root of a repository. Note |
