mirror of
https://github.com/danbulant/cushy
synced 2026-07-06 11:40:37 +00:00
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:
parent
9c4ae939e1
commit
7a9ddaa926
1 changed files with 7 additions and 0 deletions
7
.github/workflows/rust.yml
vendored
7
.github/workflows/rust.yml
vendored
|
|
@ -13,6 +13,13 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- 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
|
- name: Install x11 dependencies for Kludgine
|
||||||
if: matrix.os == 'ubuntu-latest'
|
if: matrix.os == 'ubuntu-latest'
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue