clean up free disk space

This commit is contained in:
Bernhard B 2025-11-23 23:27:20 +01:00
parent 142a7c2eb6
commit e41bec91a0

View File

@ -21,7 +21,7 @@ jobs:
- name: Install Podman - name: Install Podman
run: sudo apt update && sudo apt install -y podman run: sudo apt update && sudo apt install -y podman
- name: Free up some disk space - name: Free up some disk space
run: sudo rm -rf /usr/share/dotnet && sudo rm -rf "$AGENT_TOOLSDIRECTORY" run: sudo apt-get remove -y '^aspnetcore-.*' && sudo apt-get remove -y '^dotnet-.*' --fix-missing && sudo apt-get remove -y 'php.*' --fix-missing && sudo apt-get remove -y '^mongodb-.*' --fix-missing && sudo apt-get autoremove -y && sudo apt-get clean
build: build:
runs-on: ubuntu-24.04 runs-on: ubuntu-24.04
needs: setup needs: setup