Forked from easimon's maximize-build-space action. Inspiration and additional software removals from AdityaGarg8's remove-unwanted-software action.
By default, public shared Github runners come with around 25-29 GB of free disk space to be consumed by your build and/or test job(s). If this is too little for you, and your job runs out of disk space, this action might be for you.
If not: please go on, there's nothing to see here.
This action maximizes the available disk space on public shared GitHub runners, by
- Optionally removing unnecessary preinstalled software
Depending on the use case, you can gain more than double the original space.
- This action is a hack, really, and on a "works for me" basis. It has been built by reverse-engineering undocumented parts of the Github runner setup, which might change in the future -- up to the point where this action ceases to work. For sure you're voiding the warranty on Github runners when using this. If you are not running into disk space issues with the default runner setup, don't use it..
- Removal of unnecessary software is currently implemented by
rm -rf
on specific folders, not by using a package manager or anything sophisticated. While this is quick and easy, it might delete dependencies that are required by your job and so break your build (e.g. because your build job uses a .NET based tool and you removed the required runtime). The choice of removable packages is not an expression of dislike against these -- they were just the largest folders for a single toolkit I could find quickly.
- The root file system has ~27GB (of 84GB) available, the rest being consumed by the preinstalled build environment. Github runners come with a rich choice of software, see the image descriptions for Ubuntu 22.04. This is great to support a wide variety of workflows out of the box, but also consumes a lot of space by providing programs that might be unnecessary for an individual build job.
This action does the following:
- (Optionally) Removes unwanted preinstalled software
This results in the space of the previously installed packages and the temp disk being available for your test and/or build job.
You should most probably use this action as the first build step, even before actions/checkout
. Since this action mounts a volume over the current working directory by default, the current content of the working directory will be inaccessible afterwards.
When removing software, consider that the removal of large amounts of files (which this is) can take minutes to complete. On the upside, you'll get more than 30 GB of disk space available if you actually need it.
name: action-requiring-more-space
on: push
jobs:
build-or-test:
name: Build or Test
runs-on: ubuntu-latest
steps:
- name: Maximize Runner Space
uses: justinthelaw/maximize-github-runner-space@master
with:
remove-dotnet: 'true'
- name: Checkout
uses: actions/checkout@v3
All inputs are optional and default to the following.
# Standard package removal actions
remove-dotnet:
description: "Removes .NET runtime and libraries. (frees ~2 GB)"
required: false
default: "false"
remove-android:
description: "Removes Android SDKs and Tools. (frees ~9 GB)"
required: false
default: "false"
remove-haskell:
description: "Removes GHC (Haskell) artifacts. (frees ~5 GB)"
required: false
default: "false"
remove-codeql:
description: "Removes CodeQL Action Bundles. (frees ~5 GB)"
required: false
default: "false"
remove-docker-images:
description: "Removes cached Docker images. (frees ~3 GB)"
required: false
default: "false"
# Custom removal actions
remove-large-packages:
description: "Removes unwanted large Apt packages. (frees ~3 GB)"
required: false
default: "false"
remove-cached-tools:
description: "Removes cached tools used by setup actions by GitHub. (frees ~8 GB)"
required: false
default: "false"
remove-swapfile:
description: "Removes the Swapfile. (frees ~4 GB)"
required: false
default: "false"