fix syntax
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 28s
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 28s
Podman Rootless Demo / deploy-prod (push) Has been skipped
This commit is contained in:
parent
ef2b5b70fc
commit
11f2dc15ef
1 changed files with 4 additions and 4 deletions
|
|
@ -201,16 +201,16 @@ jobs:
|
|||
run: |
|
||||
set -x
|
||||
echo "=== Force stopping all containers ==="
|
||||
podman --remote ps -aq | xargs -r podman --remote stop --time 5 2>/dev/null || true
|
||||
podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote stop --time 5 2>/dev/null || true
|
||||
|
||||
echo "=== Force removing all containers ==="
|
||||
podman --remote ps -aq | xargs -r podman --remote rm -f 2>/dev/null || true
|
||||
podman --remote ps -aq | xargs -r --no-run-if-empty podman --remote rm -f 2>/dev/null || true
|
||||
|
||||
echo "=== Force stopping all pods ==="
|
||||
podman --remote pod ps -q | xargs -r podman --remote pod stop --time 5 2>/dev/null || true
|
||||
podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod stop --time 5 2>/dev/null || true
|
||||
|
||||
echo "=== Force removing all pods ==="
|
||||
podman --remote pod ps -q | xargs -r podman --remote pod rm -f 2>/dev/null || true
|
||||
podman --remote pod ps -q | xargs -r --no-run-if-empty podman --remote pod rm -f 2>/dev/null || true
|
||||
|
||||
- name: Disk preflight diagnostic
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue