refactor: full rewrite of all CI workflows for Gitea runner
All checks were successful
API Endpoint Tests / test-api-endpoints (push) Successful in 29s
CLI Tests / test-cli (push) Successful in 1m20s
Documentation Validation / validate-docs (push) Successful in 12s
JavaScript SDK Tests / test-js-sdk (push) Successful in 21s
Integration Tests / test-service-integration (push) Successful in 44s
Package Tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk]) (push) Successful in 38s
Package Tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core]) (push) Successful in 19s
Package Tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto]) (push) Successful in 21s
Package Tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk]) (push) Successful in 24s
Package Tests / test-javascript-packages (map[name:aitbc-sdk-js path:packages/js/aitbc-sdk]) (push) Successful in 8s
Package Tests / test-javascript-packages (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 29s
Python Tests / test-python (push) Successful in 1m20s
Rust ZK Components Tests / test-rust-zk (push) Successful in 55s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 14s
Security Scanning / security-scan (push) Successful in 1m5s
Smart Contract Tests / test-solidity (map[name:zk-circuits path:apps/zk-circuits]) (push) Successful in 52s
Systemd Sync / sync-systemd (push) Successful in 4s
Smart Contract Tests / lint-solidity (push) Successful in 59s
All checks were successful
API Endpoint Tests / test-api-endpoints (push) Successful in 29s
CLI Tests / test-cli (push) Successful in 1m20s
Documentation Validation / validate-docs (push) Successful in 12s
JavaScript SDK Tests / test-js-sdk (push) Successful in 21s
Integration Tests / test-service-integration (push) Successful in 44s
Package Tests / test-python-packages (map[name:aitbc-agent-sdk path:packages/py/aitbc-agent-sdk]) (push) Successful in 38s
Package Tests / test-python-packages (map[name:aitbc-core path:packages/py/aitbc-core]) (push) Successful in 19s
Package Tests / test-python-packages (map[name:aitbc-crypto path:packages/py/aitbc-crypto]) (push) Successful in 21s
Package Tests / test-python-packages (map[name:aitbc-sdk path:packages/py/aitbc-sdk]) (push) Successful in 24s
Package Tests / test-javascript-packages (map[name:aitbc-sdk-js path:packages/js/aitbc-sdk]) (push) Successful in 8s
Package Tests / test-javascript-packages (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 29s
Python Tests / test-python (push) Successful in 1m20s
Rust ZK Components Tests / test-rust-zk (push) Successful in 55s
Smart Contract Tests / test-solidity (map[name:aitbc-token path:packages/solidity/aitbc-token]) (push) Successful in 14s
Security Scanning / security-scan (push) Successful in 1m5s
Smart Contract Tests / test-solidity (map[name:zk-circuits path:apps/zk-circuits]) (push) Successful in 52s
Systemd Sync / sync-systemd (push) Successful in 4s
Smart Contract Tests / lint-solidity (push) Successful in 59s
TOTAL: 3524 → 924 lines (74% reduction) Per-file changes: - api-endpoint-tests.yml: 548 → 63 lines (-88%) - package-tests.yml: 1014 → 149 lines (-85%) - integration-tests.yml: 561 → 100 lines (-82%) - python-tests.yml: 290 → 77 lines (-73%) - smart-contract-tests.yml: 290 → 105 lines (-64%) - systemd-sync.yml: 192 → 86 lines (-55%) - cli-level1-tests.yml: 180 → 66 lines (-63%) - security-scanning.yml: 137 → 72 lines (-47%) - rust-zk-tests.yml: 112 → 69 lines (-38%) - docs-validation.yml: 104 → 72 lines (-31%) - js-sdk-tests.yml: 97 → 65 lines (-33%) Fixes applied: 1. Concurrency groups: all 7 workflows shared 'ci-workflows' group (they cancelled each other). Now each has unique group. 2. Removed all actions/checkout@v4 usage (not available on Gitea runner) → replaced with git clone http://gitea.bubuit.net:3000/oib/aitbc.git 3. Removed all sudo usage (Debian root environment) 4. Fixed wrong ports: wallet 8002→8003, RPC 8545→8006 5. External workspaces: /opt/aitbc/*-workspace → /var/lib/aitbc-workspaces/ 6. Extracted 274 echo'd Python lines → scripts/ci/test_api_endpoints.py 7. Removed dead CLI test code (tests were skipped entirely) 8. Moved aitbc.code-workspace out of workflows directory 9. Added --depth 1 to all git clones for speed 10. Added cleanup steps to all workflows New files: - scripts/ci/clone-repo.sh: reusable clone helper - scripts/ci/test_api_endpoints.py: extracted API test script
This commit is contained in:
@@ -1,192 +1,86 @@
|
||||
name: systemd-sync
|
||||
name: Systemd Sync
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main, develop ]
|
||||
branches: [main, develop]
|
||||
paths:
|
||||
- 'systemd/**'
|
||||
- '.gitea/workflows/systemd-sync.yml'
|
||||
pull_request:
|
||||
branches: [main, develop]
|
||||
workflow_dispatch:
|
||||
|
||||
# Prevent parallel execution - run workflows serially
|
||||
concurrency:
|
||||
group: ci-workflows
|
||||
group: systemd-sync-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
sync-systemd:
|
||||
runs-on: debian
|
||||
|
||||
timeout-minutes: 5
|
||||
|
||||
steps:
|
||||
- name: Setup workspace
|
||||
- name: Clone repository
|
||||
run: |
|
||||
echo "=== SYSTEMD SYNC SETUP ==="
|
||||
echo "Current PWD: $(pwd)"
|
||||
echo "Forcing absolute workspace path..."
|
||||
|
||||
# Clean and create isolated workspace
|
||||
rm -rf /opt/aitbc/systemd-sync-workspace
|
||||
mkdir -p /opt/aitbc/systemd-sync-workspace
|
||||
cd /opt/aitbc/systemd-sync-workspace
|
||||
|
||||
# Ensure no git lock files exist
|
||||
find . -name "*.lock" -delete 2>/dev/null || true
|
||||
|
||||
echo "Workspace PWD: $(pwd)"
|
||||
echo "Cloning repository..."
|
||||
git clone http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||
|
||||
cd repo
|
||||
echo "Repo PWD: $(pwd)"
|
||||
echo "Files in repo:"
|
||||
ls -la
|
||||
WORKSPACE="/var/lib/aitbc-workspaces/systemd-sync"
|
||||
rm -rf "$WORKSPACE"
|
||||
mkdir -p "$WORKSPACE"
|
||||
cd "$WORKSPACE"
|
||||
git clone --depth 1 http://gitea.bubuit.net:3000/oib/aitbc.git repo
|
||||
|
||||
- name: Sync Systemd Files
|
||||
- name: Validate service files
|
||||
run: |
|
||||
echo "=== SYNCING SYSTEMD FILES ==="
|
||||
cd /opt/aitbc/systemd-sync-workspace/repo
|
||||
|
||||
echo "Repository systemd files:"
|
||||
ls -la systemd/ | head -10
|
||||
echo
|
||||
echo "Active systemd files:"
|
||||
ls -la /etc/systemd/system/aitbc-* | head -5 || echo "No active files found"
|
||||
echo
|
||||
|
||||
# Check if running as root (should be in CI)
|
||||
if [[ $EUID -eq 0 ]]; then
|
||||
echo "✅ Running as root - can sync systemd files"
|
||||
|
||||
# Run the linking script
|
||||
if [[ -f "scripts/link-systemd.sh" ]]; then
|
||||
echo "🔗 Running systemd linking script..."
|
||||
echo "Current directory: $(pwd)"
|
||||
echo "Systemd directory exists: $(ls -la systemd/ 2>/dev/null || echo 'No systemd directory')"
|
||||
|
||||
# Update script with correct repository path
|
||||
sed -i "s|REPO_SYSTEMD_DIR=\"/opt/aitbc/systemd\"|REPO_SYSTEMD_DIR=\"/opt/aitbc/systemd-sync-workspace/repo/systemd\"|g" scripts/link-systemd.sh
|
||||
# Also fix the current working directory issue
|
||||
sed -i "s|REPO_SYSTEMD_DIR=\"/opt/aitbc/api-tests-workspace/repo/systemd\"|REPO_SYSTEMD_DIR=\"/opt/aitbc/systemd-sync-workspace/repo/systemd\"|g" scripts/link-systemd.sh
|
||||
# Fix any other potential wrong paths
|
||||
sed -i "s|REPO_SYSTEMD_DIR=\"/opt/aitbc/.*/systemd\"|REPO_SYSTEMD_DIR=\"/opt/aitbc/systemd-sync-workspace/repo/systemd\"|g" scripts/link-systemd.sh
|
||||
|
||||
echo "Script updated, running linking..."
|
||||
./scripts/link-systemd.sh
|
||||
cd /var/lib/aitbc-workspaces/systemd-sync/repo
|
||||
echo "=== Validating systemd service files ==="
|
||||
|
||||
if [[ ! -d "systemd" ]]; then
|
||||
echo "⚠️ No systemd directory found"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
errors=0
|
||||
for f in systemd/*.service; do
|
||||
fname=$(basename "$f")
|
||||
echo -n " $fname: "
|
||||
|
||||
# Check required fields
|
||||
if grep -q "ExecStart=" "$f" && grep -q "Description=" "$f"; then
|
||||
echo "✅ valid"
|
||||
else
|
||||
echo "❌ Link script not found, creating manual sync..."
|
||||
|
||||
# Manual sync as fallback
|
||||
REPO_SYSTEMD_DIR="/opt/aitbc/systemd-sync-workspace/repo/systemd"
|
||||
ACTIVE_SYSTEMD_DIR="/etc/systemd/system"
|
||||
|
||||
# Create backup
|
||||
BACKUP_DIR="/opt/aitbc/systemd-backup-$(date +%Y%m%d-%H%M%S)"
|
||||
mkdir -p "$BACKUP_DIR"
|
||||
find "$ACTIVE_SYSTEMD_DIR" -name "aitbc-*" -type f -exec cp {} "$BACKUP_DIR/" \; 2>/dev/null || true
|
||||
|
||||
# Create symbolic links
|
||||
for file in "$REPO_SYSTEMD_DIR"/aitbc-*; do
|
||||
if [[ -f "$file" ]]; then
|
||||
filename=$(basename "$file")
|
||||
target="$ACTIVE_SYSTEMD_DIR/$filename"
|
||||
source="$REPO_SYSTEMD_DIR/$filename"
|
||||
|
||||
echo "🔗 Linking: $filename"
|
||||
ln -sf "$source" "$target"
|
||||
|
||||
# Handle .d directories
|
||||
if [[ -d "${file}.d" ]]; then
|
||||
target_dir="${target}.d"
|
||||
source_dir="${file}.d"
|
||||
rm -rf "$target_dir" 2>/dev/null || true
|
||||
ln -sf "$source_dir" "$target_dir"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
systemctl daemon-reload
|
||||
echo "✅ Manual systemd sync completed"
|
||||
echo "❌ missing ExecStart or Description"
|
||||
errors=$((errors + 1))
|
||||
fi
|
||||
|
||||
else
|
||||
echo "⚠️ Not running as root - systemd sync requires root privileges"
|
||||
echo " To sync manually: sudo ./scripts/link-systemd.sh"
|
||||
fi
|
||||
done
|
||||
|
||||
- name: Verify Sync
|
||||
echo "=== Found $(ls systemd/*.service 2>/dev/null | wc -l) service files, $errors errors ==="
|
||||
|
||||
- name: Sync service files
|
||||
run: |
|
||||
echo "=== VERIFYING SYSTEMD SYNC ==="
|
||||
cd /opt/aitbc/systemd-sync-workspace/repo
|
||||
|
||||
if [[ $EUID -eq 0 ]]; then
|
||||
echo "🔍 Verifying systemd links..."
|
||||
|
||||
# Check if links exist
|
||||
echo "Checking symbolic links:"
|
||||
for file in systemd/aitbc-*; do
|
||||
if [[ -f "$file" ]]; then
|
||||
filename=$(basename "$file")
|
||||
target="/etc/systemd/system/$filename"
|
||||
|
||||
if [[ -L "$target" ]]; then
|
||||
echo "✅ $filename -> $(readlink "$target")"
|
||||
elif [[ -f "$target" ]]; then
|
||||
echo "⚠️ $filename exists but is not a link (copied file)"
|
||||
else
|
||||
echo "❌ $filename not found in active systemd"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
echo
|
||||
echo "📊 Summary:"
|
||||
echo " Repository files: $(find systemd -name 'aitbc-*' -type f | wc -l)"
|
||||
echo " Active files: $(find /etc/systemd/system -name 'aitbc-*' -type f | wc -l)"
|
||||
echo " Symbolic links: $(find /etc/systemd/system -name 'aitbc-*' -type l | wc -l)"
|
||||
|
||||
else
|
||||
echo "⚠️ Cannot verify without root privileges"
|
||||
cd /var/lib/aitbc-workspaces/systemd-sync/repo
|
||||
|
||||
if [[ ! -d "systemd" ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
- name: Service Status Check
|
||||
echo "=== Syncing systemd files ==="
|
||||
for f in systemd/*.service; do
|
||||
fname=$(basename "$f")
|
||||
cp "$f" "/etc/systemd/system/$fname"
|
||||
echo " ✅ $fname synced"
|
||||
done
|
||||
|
||||
systemctl daemon-reload
|
||||
echo "✅ Systemd daemon reloaded"
|
||||
|
||||
- name: Service status check
|
||||
run: |
|
||||
echo "=== AITBC Service Status ==="
|
||||
for svc in aitbc-coordinator-api aitbc-exchange-api aitbc-wallet aitbc-blockchain-node aitbc-blockchain-rpc aitbc-adaptive-learning; do
|
||||
status=$(systemctl is-active "$svc" 2>/dev/null || echo "not-found")
|
||||
enabled=$(systemctl is-enabled "$svc" 2>/dev/null || echo "not-found")
|
||||
printf " %-35s active=%-10s enabled=%s\n" "$svc" "$status" "$enabled"
|
||||
done
|
||||
|
||||
- name: Cleanup
|
||||
if: always()
|
||||
run: |
|
||||
echo "=== SERVICE STATUS CHECK ==="
|
||||
|
||||
if [[ $EUID -eq 0 ]]; then
|
||||
echo "🔍 Checking AITBC service status..."
|
||||
|
||||
# Check if services are enabled
|
||||
echo "Enabled services:"
|
||||
systemctl list-unit-files 'aitbc-*' --state=enabled | head -5 || echo "No enabled services found"
|
||||
|
||||
echo
|
||||
echo "Failed services:"
|
||||
systemctl list-units 'aitbc-*' --state=failed | head -5 || echo "No failed services found"
|
||||
|
||||
echo
|
||||
echo "Running services:"
|
||||
systemctl list-units 'aitbc-*' --state=running | head -5 || echo "No running services found"
|
||||
|
||||
else
|
||||
echo "⚠️ Cannot check service status without root privileges"
|
||||
fi
|
||||
|
||||
- name: Instructions
|
||||
run: |
|
||||
echo "=== SYSTEMD SYNC INSTRUCTIONS ==="
|
||||
echo
|
||||
echo "🔧 Manual sync (if needed):"
|
||||
echo " sudo ./scripts/link-systemd.sh"
|
||||
echo
|
||||
echo "🔄 Restart services:"
|
||||
echo " sudo systemctl restart aitbc-blockchain-node"
|
||||
echo " sudo systemctl restart aitbc-coordinator-api"
|
||||
echo " sudo systemctl restart aitbc-*"
|
||||
echo
|
||||
echo "🔍 Check status:"
|
||||
echo " sudo systemctl status aitbc-*"
|
||||
echo
|
||||
echo "🔍 Verify links:"
|
||||
echo " ls -la /etc/systemd/system/aitbc-*"
|
||||
echo " readlink /etc/systemd/system/aitbc-blockchain-node.service"
|
||||
run: rm -rf /var/lib/aitbc-workspaces/systemd-sync
|
||||
|
||||
Reference in New Issue
Block a user