From 2c9f6acc038639b198708876fbf7c57d65659803 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Sat, 2 Aug 2025 21:04:43 +0200 Subject: [PATCH] Forgo full build in the `cargo hack` wf (#16328) We ran out of disk space on Github actions with the build part of this workflow. We hope that `check` should catch the worst offenders. --- .github/workflows/pre-release-checkup.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pre-release-checkup.yml b/.github/workflows/pre-release-checkup.yml index 57f87370d6..a6737d92ad 100644 --- a/.github/workflows/pre-release-checkup.yml +++ b/.github/workflows/pre-release-checkup.yml @@ -28,8 +28,9 @@ jobs: - name: Feature power set run: | cargo hack --all --feature-powerset --at-least-one-of rustls-tls,native-tls --mutually-exclusive-features rustls-tls,native-tls --mutually-exclusive-features rustls-tls,static-link-openssl --skip default-no-clipboard,stable,mimalloc check - - name: Build all crates - run: cargo hack --all build --clean-per-run + # Don't build fully for now as it will run out of disk space + # - name: Build all crates + # run: cargo hack --all build --clean-per-run - name: Check for clean repo shell: bash