diff options
| author | 许杰友 Jieyou Xu (Joe) <39484203+jieyouxu@users.noreply.github.com> | 2025-01-11 00:34:43 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-11 00:34:43 +0800 |
| commit | 90e0127674a5f9750b1d5c20c8258f2986da7417 (patch) | |
| tree | bac5df02540db9acb08ead83800e29d45f010f05 | |
| parent | f53bce4c578225a32614608344f38efb42f7632a (diff) | |
| parent | fcbcc7411dea3debc56807734e8565c5b7848bd6 (diff) | |
| download | rust-90e0127674a5f9750b1d5c20c8258f2986da7417.tar.gz rust-90e0127674a5f9750b1d5c20c8258f2986da7417.zip | |
Merge pull request #2205 from ehuss/ci-config
| -rw-r--r-- | src/doc/rustc-dev-guide/src/tests/ci.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/doc/rustc-dev-guide/src/tests/ci.md b/src/doc/rustc-dev-guide/src/tests/ci.md index e325b8e38fe..cf7c7b79cc5 100644 --- a/src/doc/rustc-dev-guide/src/tests/ci.md +++ b/src/doc/rustc-dev-guide/src/tests/ci.md @@ -410,6 +410,21 @@ To learn more about the dashboard, see the [Datadog CI docs]. [Datadog CI docs]: https://docs.datadoghq.com/continuous_integration/ [public dashboard]: https://p.datadoghq.com/sb/3a172e20-e9e1-11ed-80e3-da7ad0900002-b5f7bb7e08b664a06b08527da85f7e30 +## Determining the CI configuration + +If you want to determine which `config.toml` settings are used in CI for a +particular job, it is probably easiest to just look at the build log. To do +this: + +1. Go to + <https://github.com/rust-lang-ci/rust/actions?query=branch%3Aauto+is%3Asuccess> + to find the most recently successful build, and click on it. +2. Choose the job you are interested in on the left-hand side. +3. Click on the gear icon and choose "View raw logs" +4. Search for the string "Configure the build" +5. All of the build settings are listed below that starting with the + `configure:` prefix. + [GitHub Actions]: https://github.com/rust-lang/rust/actions [`jobs.yml`]: https://github.com/rust-lang/rust/blob/master/src/ci/github-actions/jobs.yml [`.github/workflows/ci.yml`]: https://github.com/rust-lang/rust/blob/master/.github/workflows/ci.yml |
