From e6182bf033dc988006a13fae8f549d5352385f8d Mon Sep 17 00:00:00 2001 From: aitbc1 Date: Sun, 29 Mar 2026 12:12:14 +0200 Subject: [PATCH] fix: update Gitea URLs in package-tests.yml workflow - Replace https://gitea.bubuit.net with http://10.0.3.107:3000 - Fix JavaScript packages CI cloning failures - Update all git clone commands in package-tests.yml - Resolve 'Failed to connect to gitea.bubuit.net port 443' error - Use correct internal Gitea server address CI Fixes: - JavaScript packages workspace setup - Cross-language compatibility tests - Package integration tests - All git clone operations now use reachable URL --- .gitea/workflows/package-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/package-tests.yml b/.gitea/workflows/package-tests.yml index 296a6057..7ae4ce27 100644 --- a/.gitea/workflows/package-tests.yml +++ b/.gitea/workflows/package-tests.yml @@ -121,7 +121,7 @@ jobs: git config --global http.postBuffer 1048576000 # Clone with multiple fallback strategies - REPO_URL="https://gitea.bubuit.net/oib/aitbc.git" + REPO_URL="http://10.0.3.107:3000/oib/aitbc.git" # Clean any existing repo directory first rm -rf repo @@ -737,7 +737,7 @@ jobs: echo "Workspace PWD: $(pwd)" echo "Cloning repository..." - git clone https://gitea.bubuit.net/oib/aitbc.git repo + git clone http://10.0.3.107:3000/oib/aitbc.git repo cd repo echo "Repo PWD: $(pwd)" @@ -878,7 +878,7 @@ jobs: # Ensure no git lock files exist find . -name "*.lock" -delete 2>/dev/null || true - git clone https://gitea.bubuit.net/oib/aitbc.git repo + git clone http://10.0.3.107:3000/oib/aitbc.git repo cd repo - name: Test SDK Compatibility @@ -962,7 +962,7 @@ jobs: # Ensure no git lock files exist find . -name "*.lock" -delete 2>/dev/null || true - git clone https://gitea.bubuit.net/oib/aitbc.git repo + git clone http://10.0.3.107:3000/oib/aitbc.git repo cd repo - name: Test Package Installation