From 21e8c566358526f10d26242cc37fcb6b215c261a Mon Sep 17 00:00:00 2001 From: Noah Saso Date: Fri, 18 Oct 2024 12:41:04 -0400 Subject: [PATCH] free disk space in other github actions --- .github/workflows/codecov.yml | 12 ++++++++++++ .github/workflows/release-contracts.yml | 11 +++++++++++ 2 files changed, 23 insertions(+) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 854840036..13df1ff6f 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -13,6 +13,18 @@ jobs: steps: - uses: actions/checkout@v3 + + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: false + docker-images: true + swap-storage: true + - uses: actions-rs/toolchain@v1 with: toolchain: stable diff --git a/.github/workflows/release-contracts.yml b/.github/workflows/release-contracts.yml index 920b1c920..6ad5b041f 100644 --- a/.github/workflows/release-contracts.yml +++ b/.github/workflows/release-contracts.yml @@ -18,6 +18,17 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + tool-cache: false + android: true + dotnet: true + haskell: true + large-packages: false + docker-images: true + swap-storage: true + # tar is required for cargo cache - run: apk add --no-cache tar