Skip to content

Commit a565ebf

Browse files
committed
chore: add free-disk-space action for integration tests
The tests all together generate large data. This is especially the case for the cypthon buildpack.
1 parent f19d9d3 commit a565ebf

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/test-pull-request.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,19 @@ jobs:
4646
builder: ${{ fromJSON(needs.unit.outputs.builders) }}
4747
fail-fast: false # don't cancel all test jobs when one fails
4848
steps:
49+
- name: Free Disk Space (Ubuntu)
50+
uses: jlumbroso/free-disk-space@main
51+
with:
52+
# This might remove tools that are actually needed,
53+
# if set to "true" but frees about 6 GB
54+
tool-cache: false
55+
# Default settings from documentation
56+
android: true
57+
dotnet: true
58+
haskell: true
59+
large-packages: true
60+
docker-images: true
61+
swap-storage: true
4962
- name: Setup Go
5063
uses: actions/setup-go@v3
5164
with:

0 commit comments

Comments
 (0)