Skip to content

Commit

Permalink
(TMP) github actions: some free space debugging
Browse files Browse the repository at this point in the history
Jobs are failing due to "no space left on device" when building
the container image. Adding some df output.

See: actions/runner-images#709

Signed-off-by: Michael Adam <obnox@redhat.com>
  • Loading branch information
obnoxxx committed Feb 7, 2021
1 parent 30f0365 commit 6ce11d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main.yml
Expand Up @@ -36,10 +36,12 @@ jobs:
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v2
- name: check free space
run: df -h
- name: build container image
# note: forcing use of podman here since we are
# using podman explicity for the push job
run: make CONTAINER_CMD=podman image-build
run: make CONTAINER_CMD=podman image-build || df -h

# push the container to quay.io - only for pushes, not PRs
push:
Expand Down

0 comments on commit 6ce11d1

Please sign in to comment.