mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-04-04 21:15:56 -04:00
ci: free up disk space on GitHub hosted runners (#2419)
This commit is contained in:
parent
fdd47b7a00
commit
dbf40d185c
25
.github/actions/setup_bazel/action.yml
vendored
25
.github/actions/setup_bazel/action.yml
vendored
@ -27,6 +27,31 @@ runs:
|
||||
fi
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Free up space (Ubuntu)
|
||||
shell: bash
|
||||
if: startsWith(runner.name, 'GitHub Actions') && runner.os == 'Linux'
|
||||
run: |
|
||||
echo "::group::Free up space (Ubuntu)"
|
||||
echo "Available storage (before):"
|
||||
df -h
|
||||
|
||||
sudo apt-get remove -y '^dotnet-.*'
|
||||
sudo apt-get remove -y '^llvm-.*'
|
||||
sudo apt-get remove -y 'php.*'
|
||||
sudo apt-get remove -y '^mongodb-.*'
|
||||
sudo apt-get remove -y '^mysql-.*'
|
||||
sudo rm -rf /usr/share/dotnet
|
||||
sudo rm -rf /usr/local/lib/android
|
||||
sudo rm -rf /opt/ghc
|
||||
sudo rm -rf /opt/hostedtoolcache/CodeQL
|
||||
sudo docker image prune --all --force
|
||||
sudo apt-get autoremove -y
|
||||
sudo apt-get clean
|
||||
|
||||
echo "Available storage (after):"
|
||||
df -h
|
||||
echo "::endgroup::"
|
||||
|
||||
- name: Configure Bazel (general)
|
||||
shell: bash
|
||||
env:
|
||||
|
Loading…
x
Reference in New Issue
Block a user