From 6f73dd15d359b64bd778dd2a1d2702b8e6a8235f Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Thu, 17 Jul 2025 23:04:07 +0200 Subject: [PATCH] chore: update ci-cd.yml --- .gitea/workflows/ci-cd.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.gitea/workflows/ci-cd.yml b/.gitea/workflows/ci-cd.yml index b990943c..0e592b40 100644 --- a/.gitea/workflows/ci-cd.yml +++ b/.gitea/workflows/ci-cd.yml @@ -14,21 +14,21 @@ jobs: runs-on: ubuntu-latest steps: - - name: Test Network and DNS - run: | - echo "🔍 Testing network connectivity..." - echo "Host entries:" - cat /etc/hosts - echo "IP-Konfiguration:" - ip addr - echo "Network interfaces:" - ifconfig || ip addr - echo "Testing Gitea connectivity (127.0.0.1):" - curl -s -o /dev/null -w "%{http_code} - Gitea Status\n" http://${GITEA_URL} || echo "❌ Cannot reach Gitea" - echo "Testing Registry connectivity (127.0.0.1):" - curl -s -o /dev/null -w "%{http_code} - Registry Status\n" http://${REGISTRY_URL}/v2/ || echo "❌ Cannot reach Registry" - echo "Alternativer lokaler Test:" - curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1:3000 || echo "❌ Cannot reach Gitea via 127.0.0.1" +# - name: Test Network and DNS +# run: | +# echo "🔍 Testing network connectivity..." +# echo "Host entries:" +# cat /etc/hosts +# echo "IP-Konfiguration:" +# ip addr +# echo "Network interfaces:" +# ifconfig || ip addr +# echo "Testing Gitea connectivity (127.0.0.1):" +# curl -s -o /dev/null -w "%{http_code} - Gitea Status\n" http://${GITEA_URL} || echo "❌ Cannot reach Gitea" +# echo "Testing Registry connectivity (127.0.0.1):" +# curl -s -o /dev/null -w "%{http_code} - Registry Status\n" http://${REGISTRY_URL}/v2/ || echo "❌ Cannot reach Registry" +# echo "Alternativer lokaler Test:" +# curl -s -o /dev/null -w "%{http_code}\n" http://127.0.0.1:3000 || echo "❌ Cannot reach Gitea via 127.0.0.1" - name: Checkout Code uses: actions/checkout@v4