Skip to content

Commit

Permalink
chore: added free diskspace action
Browse files Browse the repository at this point in the history
  • Loading branch information
Kammerlo committed Aug 6, 2024
1 parent 0c47b9b commit 9f0f147
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/actions/free_disk_space/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Free disk space
description: This actions cleans up the disk space of github actions
runs:
using: composite
steps:
- name: Check disk space
shell: bash
run: df -h
- name: Free disk space
shell: bash
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
sudo rm -rf \
/usr/share/dotnet /usr/local/lib/android /opt/ghc \
/usr/local/share/powershell /usr/share/swift /usr/local/.ghcup \
/usr/lib/jvm || true
echo "some directories deleted"
sudo apt install aptitude -y >/dev/null 2>&1
sudo aptitude purge aria2 ansible azure-cli shellcheck rpm xorriso zsync \
esl-erlang firefox gfortran-8 gfortran-9 google-chrome-stable \
google-cloud-sdk imagemagick \
libmagickcore-dev libmagickwand-dev libmagic-dev ant ant-optional kubectl \
mercurial apt-transport-https mono-complete libmysqlclient \
unixodbc-dev yarn chrpath libssl-dev libxft-dev \
libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev \
snmp pollinate libpq-dev postgresql-client powershell ruby-full \
sphinxsearch subversion mongodb-org azure-cli microsoft-edge-stable \
-y -f >/dev/null 2>&1
sudo aptitude purge google-cloud-sdk -f -y >/dev/null 2>&1
sudo aptitude purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo apt purge microsoft-edge-stable -f -y >/dev/null 2>&1 || true
sudo aptitude purge '~n ^mysql' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^php' -f -y >/dev/null 2>&1
sudo aptitude purge '~n ^dotnet' -f -y >/dev/null 2>&1
sudo apt-get autoremove -y >/dev/null 2>&1
sudo apt-get autoclean -y >/dev/null 2>&1
echo "some packages purged"
- name: Check disk space again
shell: bash
run: df -h
- name: Get more space
shell: bash
run: |
sudo rm -rf ${GITHUB_WORKSPACE}/.git
df . -h
2 changes: 2 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Free Diskspace
uses: ./.github/actions/free_disk_space
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Free Diskspace
uses: ./.github/actions/free_disk_space
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
Expand Down

0 comments on commit 9f0f147

Please sign in to comment.