Disk space cleanup in CI

This snippet was copied from BonsaiDb, it basically clears up some
things that aren't needed from the default Github CI.
This commit is contained in:
Jonathan Johnson 2024-03-06 09:54:09 -08:00
parent 9c4ae939e1
commit 7a9ddaa926
No known key found for this signature in database
GPG key ID: A66D6A34D6620579

View file

@ -13,6 +13,13 @@ jobs:
steps:
- uses: actions/checkout@v3
-
name: Free disk space
if: matrix.os == 'ubuntu-latest'
run: |
sudo docker rmi $(docker image ls -aq) || true
sudo rm -rf /usr/share/dotnet /usr/local/lib/android /opt/ghc || true
- name: Install x11 dependencies for Kludgine
if: matrix.os == 'ubuntu-latest'
run: |