fix: correct network URLs in all CI workflows - ROOT CAUSE FIX
All checks were successful
AITBC CLI Level 1 Commands Test / test-cli-level1 (push) Successful in 16s
api-endpoint-tests / test-api-endpoints (push) Successful in 33s
package-tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk python_version:3.13]) (push) Successful in 5s
package-tests / test-python-packages (map[name:aitbc-cli path:. python_version:3.13]) (push) Successful in 7s
package-tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core python_version:3.13]) (push) Successful in 6s
package-tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto python_version:3.13]) (push) Successful in 6s
package-tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk python_version:3.13]) (push) Successful in 6s
package-tests / test-javascript-packages (map[name:aitbc-sdk node_version:24 path:packages/js/aitbc-sdk]) (push) Successful in 7s
python-tests / test (push) Successful in 18s
integration-tests / test-service-integration (push) Successful in 1m23s
python-tests / test-specific (push) Has been skipped
security-scanning / audit (push) Successful in 18s
systemd-sync / sync-systemd (push) Successful in 5s
package-tests / cross-language-compatibility (push) Successful in 4s
package-tests / package-integration-tests (push) Successful in 10s
smart-contract-tests / test-solidity-contracts (map[config:hardhat.config.ts name:aitbc-token path:packages/solidity/aitbc-token tool:hardhat]) (push) Successful in 1m24s
smart-contract-tests / lint-solidity (push) Successful in 4s
All checks were successful
AITBC CLI Level 1 Commands Test / test-cli-level1 (push) Successful in 16s
api-endpoint-tests / test-api-endpoints (push) Successful in 33s
package-tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk python_version:3.13]) (push) Successful in 5s
package-tests / test-python-packages (map[name:aitbc-cli path:. python_version:3.13]) (push) Successful in 7s
package-tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core python_version:3.13]) (push) Successful in 6s
package-tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto python_version:3.13]) (push) Successful in 6s
package-tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk python_version:3.13]) (push) Successful in 6s
package-tests / test-javascript-packages (map[name:aitbc-sdk node_version:24 path:packages/js/aitbc-sdk]) (push) Successful in 7s
python-tests / test (push) Successful in 18s
integration-tests / test-service-integration (push) Successful in 1m23s
python-tests / test-specific (push) Has been skipped
security-scanning / audit (push) Successful in 18s
systemd-sync / sync-systemd (push) Successful in 5s
package-tests / cross-language-compatibility (push) Successful in 4s
package-tests / package-integration-tests (push) Successful in 10s
smart-contract-tests / test-solidity-contracts (map[config:hardhat.config.ts name:aitbc-token path:packages/solidity/aitbc-token tool:hardhat]) (push) Successful in 1m24s
smart-contract-tests / lint-solidity (push) Successful in 4s
🔥 REAL ROOT CAUSE: Network + URL mismatch (not CI logic) ❌ Before: https://gitea.bubuit.net (port 443, HTTPS) ✅ After: http://gitea.bubuit.net:3000 (port 3000, HTTP) Fixed Files: - .gitea/workflows/systemd-sync.yml - .gitea/workflows/security-scanning.yml - .gitea/workflows/python-tests.yml - .gitea/workflows/smart-contract-tests.yml - .gitea/workflows/integration-tests.yml - .gitea/workflows/cli-level1-tests.yml - .gitea/workflows/api-endpoint-tests.yml - .gitea/workflows/package-tests.yml Root Cause Analysis: - Service runs on: http://10.0.3.107:3000 - DNS resolves: gitea.bubuit.net → 10.0.3.107 - BUT wrong protocol: https (443) instead of http (3000) - Connection failed: "Failed to connect to gitea.bubuit.net port 443" Verification: ✅ curl -I http://gitea.bubuit.net:3000 → HTTP/1.1 200 OK ✅ git ls-remote http://gitea.bubuit.net:3000/oib/aitbc.git → refs returned This fixes ALL CI workflow cloning failures. No infrastructure changes needed - just correct URLs.
This commit is contained in:
@@ -44,7 +44,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ jobs:
|
|||||||
cd "$WORKSPACE_BASE"
|
cd "$WORKSPACE_BASE"
|
||||||
|
|
||||||
# Clone repository
|
# Clone repository
|
||||||
git clone http://10.0.3.107:3000/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
cd repo
|
cd repo
|
||||||
|
|
||||||
# Check filesystem space and permissions
|
# Check filesystem space and permissions
|
||||||
@@ -724,7 +724,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone http://10.0.3.107:3000/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
@@ -865,7 +865,7 @@ jobs:
|
|||||||
# Ensure no git lock files exist
|
# Ensure no git lock files exist
|
||||||
find . -name "*.lock" -delete 2>/dev/null || true
|
find . -name "*.lock" -delete 2>/dev/null || true
|
||||||
|
|
||||||
git clone http://10.0.3.107:3000/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
cd repo
|
cd repo
|
||||||
|
|
||||||
- name: Test SDK Compatibility
|
- name: Test SDK Compatibility
|
||||||
@@ -950,7 +950,7 @@ jobs:
|
|||||||
# Ensure no git lock files exist
|
# Ensure no git lock files exist
|
||||||
find . -name "*.lock" -delete 2>/dev/null || true
|
find . -name "*.lock" -delete 2>/dev/null || true
|
||||||
|
|
||||||
git clone http://10.0.3.107:3000/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
cd repo
|
cd repo
|
||||||
|
|
||||||
- name: Test Package Installation
|
- name: Test Package Installation
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
@@ -221,7 +221,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
@@ -264,7 +264,7 @@ jobs:
|
|||||||
# Ensure no git lock files exist
|
# Ensure no git lock files exist
|
||||||
find . -name "*.lock" -delete 2>/dev/null || true
|
find . -name "*.lock" -delete 2>/dev/null || true
|
||||||
|
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
cd repo
|
cd repo
|
||||||
|
|
||||||
- name: Lint Solidity Contracts
|
- name: Lint Solidity Contracts
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
|
|
||||||
echo "Workspace PWD: $(pwd)"
|
echo "Workspace PWD: $(pwd)"
|
||||||
echo "Cloning repository..."
|
echo "Cloning repository..."
|
||||||
git clone https://gitea.bubuit.net/oib/aitbc.git repo
|
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||||
|
|
||||||
cd repo
|
cd repo
|
||||||
echo "Repo PWD: $(pwd)"
|
echo "Repo PWD: $(pwd)"
|
||||||
|
|||||||
Reference in New Issue
Block a user