From 10cd8d5c94b346f853e76c916b88ed3e50c3c065 Mon Sep 17 00:00:00 2001 From: Nikita Pozdniakov Date: Tue, 27 Jan 2026 13:23:06 +0300 Subject: [PATCH] added debug logs --- .gitea/workflows/ci.yml | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 48923dc..5be9b92 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,8 +14,32 @@ jobs: - name: Checkout uses: https://gitea.nikitapozd.dev/actions/checkout@v6 - - name: Install tools (curl, jq) - run: apk add --no-cache curl jq + - name: Install tools (curl, jq) with debug + shell: sh + run: | + set -euxo pipefail + + echo "=== Network info ===" + ip addr || true + ip route || true + cat /etc/resolv.conf || true + + echo "=== DNS test ===" + nslookup dl-cdn.alpinelinux.org || true + + echo "=== HTTPS test (IPv4 only) ===" + curl -4 -v --max-time 10 https://dl-cdn.alpinelinux.org || true + + echo "=== APK repositories ===" + cat /etc/apk/repositories + + echo "=== APK update (verbose) ===" + apk update -v --no-progress + + echo "=== Installing curl jq (verbose, no cache) ===" + APK_PROGRESS=plain apk add -v --no-cache curl jq +# - name: Install tools (curl, jq) +# run: apk add --no-cache curl jq - name: Get Keycloak access token from Gitea secrets env: