cleanup script

This commit is contained in:
Tyler Mayoff 2025-07-04 21:59:12 -04:00
parent b26a67cb26
commit 0185d1b33a
2 changed files with 18 additions and 20 deletions

17
.github/actions/disk_space/clean.sh vendored Normal file
View file

@ -0,0 +1,17 @@
#!/bin/bash
paths=(
"/home/runner/.rustup"
"/usr/share/dotnet"
"/usr/share/swift"
"/usr/lib/jvm"
"/usr/lib/llvm-18"
"/usr/local/.ghcup"
"/usr/local/share/chromium"
"/usr/local/lib/android"
"/opt/ghc"
"/opt/microsoft"
"/opt/hostedtoolcache"
)
sudo rm -rf "${paths[@]}"