From d419ef9a1cf01eeaaabd4af8267d61fecfc73f77 Mon Sep 17 00:00:00 2001 From: continuist Date: Sun, 14 Sep 2025 14:58:55 -0400 Subject: [PATCH] test --- .forgejo/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index 092e4c2..a8ede43 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Verify podman socket run: | echo "DOCKER_HOST=$DOCKER_HOST" - test -S /tmp/podman.sock || { echo "missing /tmp/podman.sock"; exit 1; } + test -S /tmp/podman/podman.sock || { echo "missing /tmp/podman/podman.sock"; exit 1; } mkdir -p "${XDG_CONFIG_HOME:-/tmp/.config}/containers" # Prefer explicit remote; fallback to podman-remote if that's what's installed (podman --remote info || podman-remote info) | sed -n '1,80p' @@ -43,7 +43,7 @@ jobs: run: podman --remote network create --internal integ-${{ env.RUN_ID }} - name: Start PostgreSQL - run: | + run: | podman --remote run -d \ --name test-postgres-${{ env.RUN_ID }} \ --network integ-${{ env.RUN_ID }} \ @@ -60,7 +60,7 @@ jobs: sleep 1 done ' - + - name: Run backend tests run: | podman --remote run --rm \