.dotfiles/.github/actions/disk_space/clean.sh
Tyler Mayoff 7eb3645a60 debugging
2025-07-04 22:33:05 -04:00

23 lines
393 B
Bash
Executable file

#!/bin/bash
set -x
paths=(
"/home/runner/.rustup"
"/usr/share/dotnet"
"/usr/share/swift"
"/usr/share/miniconda"
"/usr/lib/jvm"
"/usr/lib/llvm-*"
"/usr/lib/google-cloud-sdk"
"/usr/local/.ghcup"
"/usr/local/share/chromium"
"/usr/local/lib/android"
"/usr/local/julia1.11.5"
"/opt/ghc"
"/opt/az"
"/opt/microsoft"
"/opt/hostedtoolcache"
)
sudo rm -rf "${paths[@]}"