Skip to content

Commit 7a2e718

Browse files
authored
Merge pull request #131 from pipeless-ai/fix_runner_space
fix(workflows): Increase build space in CUDA runner
2 parents ef81b30 + 0398da4 commit 7a2e718

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/docker-publish.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,15 @@ jobs:
5858
name: Push CUDA Docker image to Docker Hub
5959
runs-on: ubuntu-latest
6060
steps:
61+
# Avoids the runner to run out of space by removing unnecesary dependencies
62+
- name: Maximize build space
63+
uses: easimon/maximize-build-space@master
64+
with:
65+
root-reserve-mb: 35000
66+
swap-size-mb: 1024
67+
remove-dotnet: 'true'
68+
remove-android: 'true'
69+
6170
- name: Check out the repo
6271
uses: actions/checkout@v3
6372

0 commit comments

Comments
 (0)