Skip to content

Commit

Permalink
Free Disk Space in Github CIs
Browse files Browse the repository at this point in the history
Add a new script that removes some packages we do not need. It can free up about 7 GB of space on Ubuntu.

See:
  AMReX-Codes/amrex#3574

Co-authored-by: Weiqun Zhang <weiqunzhang@lbl.gov>
  • Loading branch information
ax3l and WeiqunZhang committed Oct 18, 2023
1 parent 6779a70 commit 05a9188
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Clean Out
run: |
.github/workflows/dependencies/ubuntu_free_disk_space.sh
- name: Install Packages (C++)
if: ${{ matrix.language == 'cpp' }}
run: |
Expand Down
40 changes: 40 additions & 0 deletions .github/workflows/dependencies/ubuntu_free_disk_space.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/usr/bin/env bash
#
# Copyright 2023 The AMReX Community
#
# License: BSD-3-Clause-LBNL

# Don't want to use the following line because apt-get remove may fail if
# the package specfied does not exist.
# set -eu -o pipefail

# Large packages
dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n | tail -n 100

echo 'Removing some packages we do not need'

df -h

apt list --installed

sudo apt-get remove -y '^apache.*'
sudo apt-get remove -y '^aspnetcore.*'
sudo apt-get remove -y '^azure.*'
sudo apt-get remove -y '^dotnet.*'
sudo apt-get remove -y '^firebird.*'
sudo apt-get remove -y '^firefox.*'
sudo apt-get remove -y '^google.*'
sudo apt-get remove -y '^hhvm.*'
sudo apt-get remove -y '^microsoft.*'
sudo apt-get remove -y '^mongodb.*'
sudo apt-get remove -y '^mono-.*'
sudo apt-get remove -y '^monodoc-.*'
sudo apt-get remove -y '^mysql.*'
sudo apt-get remove -y '^php.*'
sudo apt-get remove -y '^powershell.*'
sudo apt-get remove -y '^snapd.*'
sudo apt-get remove -y '^temurin.*'

sudo apt-get autoremove -y

df -h

0 comments on commit 05a9188

Please sign in to comment.