Skip to content

Commit 4d73cc5

Browse files
committed
Add free disk space action
1 parent b8865d5 commit 4d73cc5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,20 @@ jobs:
2525
group: ${{ github.ref == 'refs/heads/develop' && format('build-develop-{0}-{1}', matrix.variant, github.sha) || format('build-{0}-{1}', matrix.variant, github.ref) }}
2626
cancel-in-progress: true
2727
steps:
28+
- name: Free Disk Space (Ubuntu)
29+
uses: jlumbroso/free-disk-space@main
30+
with:
31+
# this might remove tools that are actually needed,
32+
# if set to "true" but frees about 6 GB
33+
tool-cache: false
34+
# all of these default to true, but we should only need the 'android' one (and maybe swap-storage?)
35+
android: false
36+
dotnet: true
37+
haskell: true
38+
large-packages: true
39+
docker-images: true
40+
swap-storage: false
41+
2842
- uses: actions/checkout@v6
2943
with:
3044
# Ensure we are building the branch and not the branch after being merged on develop

0 commit comments

Comments
 (0)