diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2024-05-28 08:52:33 +0000 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2024-05-28 08:52:33 +0000 |
| commit | f0273664ce275afe78a25b75f001b77d09186113 (patch) | |
| tree | 6bf45304525bf4287fbd2516333b2d38c21cfefd /src/ci/github-actions | |
| parent | 822c3203c65a16bbe14c1b92894ad7fd72ebb432 (diff) | |
| download | rust-f0273664ce275afe78a25b75f001b77d09186113.tar.gz rust-f0273664ce275afe78a25b75f001b77d09186113.zip | |
document DIST_TRY_BUILD
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/jobs.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index 05470eebf01..174aaeec6b5 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -61,6 +61,12 @@ envs: try: <<: *production + # The following env var activates faster `try` builds in `opt-dist` by, e.g. + # - building only the more commonly useful components (we rarely need e.g. rust-docs in try + # builds) + # - not running `opt-dist`'s post-optimization smoke tests on the resulting toolchain + # + # If you *want* these to happen however, temporarily uncomment it before triggering a try build. DIST_TRY_BUILD: 1 auto: |
