Skip to content

Commit

Permalink
Increase available disk space for CI builds
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <[email protected]>
  • Loading branch information
stweil committed May 27, 2024
1 parent 659dcdb commit 6cd9f7d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/makeall-linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ jobs:
df -h
docker rmi $(docker images -q)
df -h
- name: Remove Homebrew, Android and .NET
run: |
sudo rm -rf /home/linuxbrew # will release Homebrew
sudo rm -rf /usr/local/lib/android # will release about 10 GB if you don't need Android
sudo rm -rf /usr/share/dotnet # will release about 20GB if you don't need .NET
sudo rm -rf /opt/ghc
sudo rm -rf /usr/local/share/boost
sudo du -mscx /* 2>/dev/null || true
df -h /
- name: update apt repositories
run: sudo apt-get update
- name: Install dependencies
Expand Down

0 comments on commit 6cd9f7d

Please sign in to comment.