gha-free-disk-space.sh 330 B

123456789
  1. #!/bin/bash -e
  2. # GitHub Actions runners have only provide 14 GB of disk space which we have been exceeding regularly
  3. # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
  4. df -h
  5. sudo rm -rf /usr/local/lib/android
  6. sudo rm -rf /usr/share/dotnet
  7. df -h