ci: free up a bit of runner space safely (again)
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
7f96b2f92a
commit
8f14048528
|
@ -71,6 +71,15 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
sudo apt install liburing-dev -y
|
sudo apt install liburing-dev -y
|
||||||
|
|
||||||
|
- name: Free up a bit of runner space
|
||||||
|
run: |
|
||||||
|
set +o pipefail
|
||||||
|
sudo docker image prune --all --force || true
|
||||||
|
sudo apt purge -y 'php.*' '^mongodb-.*' '^mysql-.*' azure-cli google-cloud-cli google-chrome-stable firefox powershell microsoft-edge-stable || true
|
||||||
|
sudo apt clean
|
||||||
|
sudo rm -v -rf /usr/local/games /usr/local/sqlpackage /usr/local/share/powershell /usr/local/share/edge_driver /usr/local/share/gecko_driver /usr/local/share/chromium /usr/local/share/chromedriver-linux64 /usr/lib/google-cloud-sdk /usr/lib/jvm /usr/lib/mono /usr/lib/heroku
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
- name: Sync repository
|
- name: Sync repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
|
|
@ -50,8 +50,14 @@ jobs:
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Free Disk Space (Ubuntu)
|
- name: Free up a bit of runner space
|
||||||
uses: jlumbroso/free-disk-space@main
|
run: |
|
||||||
|
set +o pipefail
|
||||||
|
sudo docker image prune --all --force || true
|
||||||
|
sudo apt purge -y 'php.*' '^mongodb-.*' '^mysql-.*' azure-cli google-cloud-cli google-chrome-stable firefox powershell microsoft-edge-stable || true
|
||||||
|
sudo apt clean
|
||||||
|
sudo rm -v -rf /usr/local/games /usr/local/sqlpackage /usr/local/share/powershell /usr/local/share/edge_driver /usr/local/share/gecko_driver /usr/local/share/chromium /usr/local/share/chromedriver-linux64 /usr/lib/google-cloud-sdk /usr/lib/jvm /usr/lib/mono /usr/lib/heroku
|
||||||
|
set -o pipefail
|
||||||
|
|
||||||
- name: Sync repository
|
- name: Sync repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
Loading…
Reference in New Issue