Skip to content

Commit

Permalink
Publisher: Clean up disk space before building
Browse files Browse the repository at this point in the history
Some images (like slc9-gpu-builder) are too big for the free runner, so
we need to remove some stuff before, mostly unused language packages

Reference for the free disk space:
actions/runner-images#2840

Builder error message:
```
==> docker:    At least 11799MB more space needed on the / filesystem.
```
  • Loading branch information
singiamtel committed Nov 13, 2024
1 parent 7f2d0d4 commit bcb3acb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/push-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Some images are too large and we run out of disk space, so try to free some
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/[email protected]
with:
tool-cache: false

- name: Install prerequisites
run: |
apt update -y
Expand Down

0 comments on commit bcb3acb

Please sign in to comment.