test
Some checks failed
CI/CD Pipeline with Direct Podman Access / test-backend (push) Failing after 20s
Some checks failed
CI/CD Pipeline with Direct Podman Access / test-backend (push) Failing after 20s
This commit is contained in:
parent
d419ef9a1c
commit
4458526020
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ jobs:
|
||||||
- name: Verify podman socket
|
- name: Verify podman socket
|
||||||
run: |
|
run: |
|
||||||
echo "DOCKER_HOST=$DOCKER_HOST"
|
echo "DOCKER_HOST=$DOCKER_HOST"
|
||||||
test -S /tmp/podman/podman.sock || { echo "missing /tmp/podman/podman.sock"; exit 1; }
|
sock="${DOCKER_HOST#unix://}"
|
||||||
|
test -S "$sock" || { echo "missing $sock"; ls -l "$(dirname "$sock")"; exit 1; }
|
||||||
mkdir -p "${XDG_CONFIG_HOME:-/tmp/.config}/containers"
|
mkdir -p "${XDG_CONFIG_HOME:-/tmp/.config}/containers"
|
||||||
# Prefer explicit remote; fallback to podman-remote if that's what's installed
|
# Prefer explicit remote; fallback to podman-remote if that's what's installed
|
||||||
(podman --remote info || podman-remote info) | sed -n '1,80p'
|
(podman --remote info || podman-remote info) | sed -n '1,80p'
|
||||||
|
|
Loading…
Add table
Reference in a new issue