ci: free up space on ubuntu test job (#1555)

* ci: free up space on ubuntu test job

(cherry picked from commit d234d2335f)

* fixup! ci: free up space on ubuntu test job

* ci use commit hash instead of malleable tag for free space action
This commit is contained in:
Byron Hambly 2024-02-14 22:22:35 +02:00 committed by GitHub
parent 1507a0787a
commit f12cf36364
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 13 additions and 0 deletions

View File

@ -115,6 +115,19 @@ jobs:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: (Free disk space on Ubuntu)
if: matrix.os == 'ubuntu-latest'
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
with:
# removing all of these takes ~10 mins, so just do as needed
android: true
dotnet: true
haskell: true
docker-images: false
large-packages: false
swap-storage: false
tool-cache: false
- name: Checkout sources
uses: actions/checkout@v4.1.1