From 04fc87ad0765b996d0f344e7bc4308cfb0bec378 Mon Sep 17 00:00:00 2001 From: strawberry Date: Thu, 25 Jul 2024 21:33:34 -0400 Subject: [PATCH] ci: try to free more runner storage/space Signed-off-by: strawberry --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0448b3e6..96719735 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -215,6 +215,10 @@ jobs: echo '```' >> $GITHUB_STEP_SUMMARY fi + - name: Run cargo clean test artifacts + run: | + cargo clean --profile test + build: name: Build runs-on: ubuntu-latest @@ -225,6 +229,9 @@ jobs: - target: aarch64-unknown-linux-musl - target: x86_64-unknown-linux-musl steps: + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + - name: Sync repository uses: actions/checkout@v4