diff options
| author | Jubilee <workingjubilee@gmail.com> | 2025-06-08 17:17:58 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-08 17:17:58 -0700 |
| commit | 66b6da53e7e17da561759fd1d9786e691c8dfc9c (patch) | |
| tree | a5579c81ef18a5eb510bb175625d0afedb1755ca | |
| parent | 940a43677afce771f9d59182ecbb8b19d62a77dc (diff) | |
| parent | b189d29b924ab03728d0738ed6463e61f5362f60 (diff) | |
| download | rust-66b6da53e7e17da561759fd1d9786e691c8dfc9c.tar.gz rust-66b6da53e7e17da561759fd1d9786e691c8dfc9c.zip | |
Rollup merge of #142199 - Kobzol:tidy-speed-up, r=Mark-Simulacrum
Do not free disk space in the `mingw-check-tidy` job It's not needed an it slows down the job considerably. It took ~2 minutes out of the total 8-9 minutes of running `mingw-check-tidy`.
| -rw-r--r-- | src/ci/github-actions/jobs.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index b6b2792d0ec..e45bf891cf5 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -128,6 +128,7 @@ pr: <<: *job-linux-4c - name: mingw-check-tidy continue_on_error: true + free_disk: false <<: *job-linux-4c - name: x86_64-gnu-llvm-19 env: |
