From fc48b37ee740dda691dfafbbea103188a5179a4c Mon Sep 17 00:00:00 2001 From: agatha Date: Sun, 10 May 2026 19:36:14 -0400 Subject: [PATCH] CI: Add diagnosis step to integration test job --- .gitea/workflows/pipeline.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/pipeline.yml b/.gitea/workflows/pipeline.yml index 0c800a3..ad12836 100644 --- a/.gitea/workflows/pipeline.yml +++ b/.gitea/workflows/pipeline.yml @@ -147,6 +147,13 @@ jobs: --health-timeout 5s --health-retries 10 steps: + - name: Diagnose + run: | + echo "=== resolv.conf ===" + cat /etc/resolv.conf + echo "=== Service DNS ===" + getent hosts postgres || echo "postgres: not in DNS" + getent hosts minio || echo "minio: not in DNS" - name: Install Node and curl (for JS actions and mc) run: | apt-get update -qq