From df99e9633191b8f710e78496602c28e8f3bfda4d Mon Sep 17 00:00:00 2001 From: Maksim Kurnikov Date: Tue, 3 Dec 2024 14:02:06 +0100 Subject: [PATCH] only remove android sdk to speed up free space job --- .github/workflows/check.yml | 8 +++----- .github/workflows/publish-stable-on-release.yml | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 90eb8c2eb..08c0f554e 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -22,13 +22,11 @@ jobs: - name: Free disk space in the runner before build uses: jlumbroso/free-disk-space@main with: - # this might remove tools that are actually needed, - # if set to "true" but frees about 6 GB + # removes 5.7GB of android SDK only tool-cache: false - # all of these default to true, but feel free to set to - # "false" if necessary for your workflow android: true - haskell: true + dotnet: false + haskell: false large-packages: false docker-images: false swap-storage: false diff --git a/.github/workflows/publish-stable-on-release.yml b/.github/workflows/publish-stable-on-release.yml index fc2521c01..8ec4fb5c4 100644 --- a/.github/workflows/publish-stable-on-release.yml +++ b/.github/workflows/publish-stable-on-release.yml @@ -37,13 +37,11 @@ jobs: - name: Free disk space in the runner before build uses: jlumbroso/free-disk-space@main with: - # this might remove tools that are actually needed, - # if set to "true" but frees about 6 GB + # removes 5.7GB of android SDK only tool-cache: false - # all of these default to true, but feel free to set to - # "false" if necessary for your workflow android: true - haskell: true + dotnet: false + haskell: false large-packages: false docker-images: false swap-storage: false