Stop and remove running containers
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 33s
Podman Rootless Demo / deploy-prod (push) Has been skipped
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Failing after 33s
Podman Rootless Demo / deploy-prod (push) Has been skipped
This commit is contained in:
parent
ba486f4f8c
commit
87be8433c6
1 changed files with 5 additions and 1 deletions
|
|
@ -209,7 +209,11 @@ jobs:
|
||||||
df -i /home/ci-service /tmp /var/tmp 2>/dev/null || df -i /tmp /var/tmp
|
df -i /home/ci-service /tmp /var/tmp 2>/dev/null || df -i /tmp /var/tmp
|
||||||
|
|
||||||
- name: Safe storage pruning
|
- name: Safe storage pruning
|
||||||
run: podman --remote system prune -f
|
run: |
|
||||||
|
# Stop and remove any running containers first
|
||||||
|
podman --remote ps -aq | xargs -r podman --remote rm -f 2>/dev/null || true
|
||||||
|
# Then prune system
|
||||||
|
podman --remote system prune -f
|
||||||
|
|
||||||
- name: Build frontend container image
|
- name: Build frontend container image
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue