More sudo, bulk APT #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cleaner | |
on: | |
push: | |
branches: | |
- cleaner-test | |
# Reference: https://github.com/actions/runner-images/blob/ubuntu22/20231001.1/images/linux/Ubuntu2204-Readme.md | |
env: | |
APT_PACKAGES_TO_REMOVE: >- | |
111-i-wont-break-apt acl aria2 autoconf automake bison dbus dnsutils fakeroot flex | |
fonts-noto-color-emoji ftp g++ gcc gnupg2 haveged imagemagick lib32z1 | |
libc++-dev libc++abi-dev libc6-dev libcurl4 libgbm-dev libgconf-2-4 | |
libgsl-dev libgtk-3-0 libmagic-dev libmagickcore-dev libmagickwand-dev | |
libsecret-1-dev libsqlite3-dev libssl-dev libtool libunwind8 libxkbfile-dev | |
libyaml-dev m4 mediainfo mercurial p7zip-full p7zip-rar parallel pass | |
patchelf pigz pkg-config pollinate python-is-python3 rpm rsync shellcheck | |
sphinxsearch sqlite3 subversion swig telnet texinfo tk upx xorriso xvfb | |
zsync | |
ENV_PATHS_TO_RM: >- | |
CHROMEWEBDRIVER CONDA EDGEWEBDRIVER GECKOWEBDRIVER JAVA_HOME_11_X64 | |
JAVA_HOME_17_X64 JAVA_HOME_8_X64 SELENIUM_JAR_PATH VCPKG_INSTALLATION_ROOT | |
jobs: | |
cleaner: | |
name: Cleaner | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Cleaner | |
env: | |
DEBIAN_NONINTERACTIVE: yes | |
run: | | |
env | sort | |
set +eu # don't care about errors, yolo! | |
set -x | |
df -h | |
docker system prune --all --force | |
df -h | |
sudo -E apt-get purge -y -- $APT_PACKAGES_TO_REMOVE | |
for pkg in $APT_PACKAGES_TO_REMOVE; do | |
sudo -E apt-get purge -y -- "$pkg" | |
done | |
df -h | |
sudo -E apt-get autoremove -y | |
sudo -E apt-get autoclean -y | |
df -h | |
for path in ENV_PATHS_TO_RM; do | |
path="${!path}" || continue | |
[ -z "$path" ] || sudo rm -rf -- "$path" | |
done | |
df -h | |
sudo rm -rf /home/linuxbrew | |
df -h | |
sudo find / -type f -mount | tee files | |
return 0 | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: files | |
path: files |