forked from emacs-ng/emacs-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Frees up disk space on GitHub Ubuntu runners
- Loading branch information
1 parent
171c217
commit 900518b
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# this name is currently not visible on GitHub due to https://github.com/actions/runner/issues/1877 | ||
name: "Free disk space" | ||
description: "Frees up disk space on GitHub Ubuntu runners" | ||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: jlumbroso/free-disk-space@main | ||
with: | ||
|
||
# These 5 options give back ~32Gb. If that's not enough, the remaining flags can be set to `true` at the expense | ||
# of this action taking longer to finish | ||
android: true | ||
dotnet: true | ||
haskell: true | ||
docker-images: true | ||
swap-storage: true | ||
|
||
large-packages: false | ||
tool-cache: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ jobs: | |
|
||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/free-disk-space | ||
- uses: cachix/install-nix-action@v24 | ||
|
||
- name: Nix Flake Check | ||
|