0af79feb7e
CI/CD Pipeline / Build Staging API Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Web Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Worker Image (pull_request) Has been skipped
CI/CD Pipeline / Build Production API Image (pull_request) Has been skipped
CI/CD Pipeline / Build Production Web Image (pull_request) Has been skipped
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Build Production Worker Image (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / ACR Image Cleanup (pull_request) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / Deploy Production (pull_request) Has been skipped
CI/CD Pipeline / Production Browser E2E (pull_request) Has been skipped
CI/CD Pipeline / Check if frontend-only change (pull_request) Successful in 23s
CI/CD Pipeline / Frontend Unit Tests (pull_request) Has been skipped
Preview Deploy / Deploy Preview Environment (pull_request) Successful in 1m8s
CI/CD Pipeline / Frontend Lint (pull_request) Successful in 3m14s
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Failing after 3m9s
PR Automation / Auto Merge on CI Green + Approved (pull_request) Successful in 3m42s
CI/CD Pipeline / Unit Tests (pull_request) Successful in 3m20s
PR Automation / Auto Approve on CI Green (pull_request) Successful in 3m48s
CI/CD Pipeline / Integration Tests (pull_request) Failing after 14s
AI Code Review / AI Code Review (pull_request) Successful in 4m32s
Preview Cleanup / Cleanup Preview Environment (pull_request) Failing after 0s
- 用docker inspect替代docker port获取映射端口,更可靠 - 端口映射失败自动fallback到容器IP直连 - 每种模式都做TCP连通性验证,确保真的可用 - 失败时输出容器状态和日志便于诊断 - 修复容器IP模式下DATABASE_URL host错误的bug
308 lines
11 KiB
Bash
Executable File
308 lines
11 KiB
Bash
Executable File
#!/bin/bash
|
|
# CI Validate Job 主脚本:代码质量全量检查
|
|
# 包含:密钥扫描、格式检查、类型检查、安全扫描、依赖漏洞检查、死代码检测、Alembic迁移验证
|
|
set -eu
|
|
|
|
echo "=== CI Validate: 开始全量代码质量检查 ==="
|
|
|
|
# --- 密钥检测 ---
|
|
echo ""
|
|
echo "=== [1/8] Secret detection (detect-secrets) ==="
|
|
python3 -m pip install -q detect-secrets
|
|
detect-secrets --version
|
|
|
|
detect-secrets scan \
|
|
--all-files \
|
|
--exclude-files '(^|/)(tests|test|e2e|__tests__|spec|docs|node_modules|site-packages|migrations|alembic|.gitea|.git|.pytest_cache|.next|dist|build)/' \
|
|
--exclude-files '\.(md|rst|txt|lock|example|sample|min\.js|min\.css|spec\.ts|test\.ts|test\.py)$' \
|
|
--exclude-files '(package-lock|yarn\.lock|poetry\.lock|Pipfile\.lock)$' \
|
|
--disable-plugin Base64HighEntropyString \
|
|
--disable-plugin HexHighEntropyString \
|
|
--disable-plugin BasicAuthDetector \
|
|
--disable-plugin KeywordDetector \
|
|
--disable-plugin IPPublicDetector \
|
|
> /tmp/secrets-scan.json 2>&1
|
|
|
|
FOUND=$(python3 -c "
|
|
import json
|
|
try:
|
|
with open('/tmp/secrets-scan.json') as f:
|
|
data = json.load(f)
|
|
results = data.get('results', {})
|
|
total = sum(len(v) for v in results.values())
|
|
print(total)
|
|
except Exception:
|
|
print('error')
|
|
")
|
|
|
|
echo "Secrets detected: $FOUND"
|
|
if [ "$FOUND" != "0" ] && [ "$FOUND" != "error" ]; then
|
|
echo ""
|
|
echo "=== Secret details ==="
|
|
python3 -c "
|
|
import json
|
|
with open('/tmp/secrets-scan.json') as f:
|
|
data = json.load(f)
|
|
for fpath, items in data.get('results', {}).items():
|
|
for item in items:
|
|
line = item.get('line_number', '?')
|
|
stype = item.get('type', '?')
|
|
hashed = item.get('hashed_secret', '')[:16]
|
|
print(f' {fpath}:{line} [{stype}] {hashed}...')
|
|
"
|
|
echo ""
|
|
echo "ERROR: Potential secrets detected in code!"
|
|
exit 1
|
|
fi
|
|
echo "✅ Secret scan passed"
|
|
|
|
# --- 增量/全量模式判断 ---
|
|
echo ""
|
|
echo "=== [2/8] Code quality checks ==="
|
|
SCAN_MODE="full"
|
|
CHANGED_PY_FILES=""
|
|
|
|
if [ "${GITHUB_EVENT_NAME:-}" = "pull_request" ] && [ -n "${GITHUB_REF_NAME:-}" ] && [ -n "${GITHUB_TOKEN:-}" ]; then
|
|
PR_NUMBER=$(echo "$GITHUB_REF" | sed 's|refs/pull/||; s|/.*||')
|
|
API_URL="${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/pulls/${PR_NUMBER}/files?limit=100"
|
|
set +e
|
|
RESPONSE=$(curl -s -w "\n%{http_code}" -H "Authorization: token ${GITHUB_TOKEN}" "$API_URL")
|
|
HTTP_CODE=$(echo "$RESPONSE" | tail -n1)
|
|
BODY=$(echo "$RESPONSE" | sed '$d')
|
|
set -e
|
|
if [ "$HTTP_CODE" = "200" ]; then
|
|
CHANGED_PY_FILES=$(echo "$BODY" | python3 -c "
|
|
import json, sys
|
|
try:
|
|
files = json.load(sys.stdin)
|
|
py_files = [f['filename'] for f in files if f['filename'].endswith('.py') and f['status'] != 'removed']
|
|
print(' '.join(py_files))
|
|
except Exception:
|
|
print('')
|
|
")
|
|
if [ -n "$CHANGED_PY_FILES" ]; then
|
|
SCAN_MODE="incremental"
|
|
echo "Incremental mode: $(echo "$CHANGED_PY_FILES" | wc -w) Python files changed"
|
|
else
|
|
SCAN_MODE="skip_py"
|
|
echo "No Python files changed in this PR"
|
|
fi
|
|
else
|
|
echo "WARN: API returned HTTP $HTTP_CODE, falling back to full scan"
|
|
fi
|
|
else
|
|
echo "Full scan mode (not a PR event)"
|
|
fi
|
|
|
|
if [ "$SCAN_MODE" = "incremental" ]; then
|
|
python3 -m compileall -q $CHANGED_PY_FILES
|
|
python3 -m black --check --fast $CHANGED_PY_FILES
|
|
python3 -m isort --check-only $CHANGED_PY_FILES
|
|
RUFF_FILES=$(echo "$CHANGED_PY_FILES" | tr ' ' '\n' | grep -v '^scripts/' | tr '\n' ' ')
|
|
if [ -n "$RUFF_FILES" ]; then
|
|
python3 -m ruff check $RUFF_FILES --statistics
|
|
else
|
|
echo "No ruff-checkable files changed, skipping"
|
|
fi
|
|
elif [ "$SCAN_MODE" = "skip_py" ]; then
|
|
echo "No Python files changed - skipping Python lint checks"
|
|
else
|
|
echo "Full scan mode"
|
|
python3 -m compileall -q alembic apps packages tests scripts
|
|
python3 -m black --check --fast alembic apps packages tests scripts
|
|
python3 -m isort --check-only alembic apps packages tests scripts
|
|
python3 -m ruff check apps packages tests --statistics
|
|
fi
|
|
echo "✅ Code quality checks passed"
|
|
|
|
# --- Mypy 类型检查 ---
|
|
echo ""
|
|
echo "=== [3/8] Type check (mypy) ==="
|
|
bash scripts/ci/mypy_check.sh
|
|
echo "✅ Mypy type check passed"
|
|
|
|
# --- Bandit 安全扫描 ---
|
|
echo ""
|
|
echo "=== [4/8] Security scan (bandit) ==="
|
|
bandit -r apps packages -q -ll
|
|
echo "✅ Bandit security scan passed"
|
|
|
|
# --- Pip-audit 依赖漏洞扫描(仅告警) ---
|
|
echo ""
|
|
echo "=== [5/8] Python dependency vulnerability scan (pip-audit, advisory only) ==="
|
|
python3 -m pip install -q pip-audit
|
|
pip-audit --version
|
|
EXIT_CODE=0
|
|
for req_file in requirements.txt requirements-base.txt requirements-dev.txt; do
|
|
if [ -f "$req_file" ]; then
|
|
echo "--- Scanning $req_file ---"
|
|
pip-audit -r "$req_file" --desc on 2>&1 | head -40 || EXIT_CODE=$?
|
|
echo ""
|
|
fi
|
|
done
|
|
echo "pip-audit scan completed (advisory mode - warnings only, not blocking CI)"
|
|
|
|
# --- Vulture 死代码检测(仅告警) ---
|
|
echo ""
|
|
echo "=== [6/8] Dead code detection (vulture, advisory only) ==="
|
|
set +e
|
|
python3 -m pip install -q vulture
|
|
vulture --version
|
|
echo "告警模式,不阻断CI。置信度>=90%建议尽快确认。"
|
|
echo ""
|
|
vulture apps packages scripts \
|
|
--exclude "tests,test,migrations,.gitea,docs,node_modules,site-packages,*/test_*.py,*/conftest.py" \
|
|
--min-confidence 70 \
|
|
2>&1 | sort -t'(' -k2 -rn | head -80
|
|
echo ""
|
|
echo "=== vulture scan summary ==="
|
|
echo "发现潜在死代码(可能包含框架装饰器注册的函数,为误报)"
|
|
echo "建议:定期人工审查高置信度(>=90%)条目"
|
|
set -e
|
|
|
|
# --- Release 脚本语法校验 ---
|
|
echo ""
|
|
echo "=== [7/8] Release scripts syntax validation ==="
|
|
bash -n scripts/backup_postgres.sh
|
|
bash -n scripts/restore_postgres_plan.sh
|
|
bash -n scripts/init_production_env.sh
|
|
echo "✅ Release scripts syntax OK"
|
|
|
|
# --- Alembic 迁移验证 ---
|
|
echo ""
|
|
echo "=== [8/8] Alembic migrations validation ==="
|
|
|
|
install_pg_local() {
|
|
if command -v pg_isready > /dev/null 2>&1; then
|
|
return 0
|
|
fi
|
|
if command -v apk > /dev/null 2>&1; then
|
|
apk add --no-cache postgresql postgresql-client > /dev/null 2>&1
|
|
mkdir -p /var/lib/postgresql/data
|
|
chown postgres:postgres /var/lib/postgresql/data
|
|
su - postgres -c "initdb -D /var/lib/postgresql/data" > /dev/null 2>&1
|
|
su - postgres -c "pg_ctl -D /var/lib/postgresql/data -l /tmp/pg.log start" > /dev/null 2>&1
|
|
sleep 2
|
|
su - postgres -c "psql -c "CREATE USER postgres WITH SUPERUSER PASSWORD 'postgres';"" > /dev/null 2>&1
|
|
su - postgres -c "psql -c "CREATE DATABASE xiaoxia_saas OWNER postgres;"" > /dev/null 2>&1
|
|
elif command -v apt-get > /dev/null 2>&1; then
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
apt-get update -qq > /dev/null 2>&1
|
|
apt-get install -y -qq postgresql postgresql-client > /dev/null 2>&1
|
|
PG_VERSION=$(pg_lsclusters -h | head -1 | awk '{print $1}')
|
|
PG_CLUSTER=$(pg_lsclusters -h | head -1 | awk '{print $2}')
|
|
PG_HBA="/etc/postgresql/$PG_VERSION/$PG_CLUSTER/pg_hba.conf"
|
|
sed -i "s/local.*all.*all.*peer/local all all trust/" "$PG_HBA" 2>/dev/null || true
|
|
sed -i "s/host.*all.*all.*127.0.0.1.*scram-sha-256/host all all 127.0.0.1/32 trust/" "$PG_HBA" 2>/dev/null || true
|
|
pg_ctlcluster "$PG_VERSION" "$PG_CLUSTER" start 2>/dev/null || true
|
|
sleep 2
|
|
su - postgres -c "psql -c "CREATE USER postgres WITH SUPERUSER PASSWORD 'postgres';"" 2>/dev/null || true
|
|
su - postgres -c "psql -c "CREATE DATABASE xiaoxia_saas OWNER postgres;"" 2>/dev/null || true
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
# 优先本地安装,失败则fallback到Docker
|
|
PG_LOCAL_OK=0
|
|
if install_pg_local; then
|
|
for i in $(seq 1 20); do
|
|
if pg_isready -U postgres -h 127.0.0.1 -p 5432 2>/dev/null | grep -q "accepting connections"; then
|
|
echo "PostgreSQL is ready on 127.0.0.1:5432 (local install)"
|
|
PG_LOCAL_OK=1
|
|
break
|
|
fi
|
|
sleep 2
|
|
done
|
|
fi
|
|
|
|
if [ "$PG_LOCAL_OK" != "1" ]; then
|
|
echo "Local PG not available, falling back to Docker..."
|
|
PG_CONTAINER="ci-pg-validate-${GITHUB_RUN_ID:-$$}"
|
|
|
|
docker rm -f "$PG_CONTAINER" 2>/dev/null || true
|
|
docker run -d --name "$PG_CONTAINER" \
|
|
-p 0:5432 \
|
|
--shm-size=256m \
|
|
-e POSTGRES_USER=postgres \
|
|
-e POSTGRES_PASSWORD=postgres \
|
|
-e POSTGRES_DB=xiaoxia_saas \
|
|
--health-cmd "pg_isready -U postgres" \
|
|
--health-interval 3s \
|
|
--health-timeout 3s \
|
|
--health-retries 20 \
|
|
postgres:16-alpine > /dev/null 2>&1
|
|
|
|
sleep 3
|
|
|
|
# 方式1: 端口映射
|
|
PG_PORT=$(docker inspect --format='{{if (index .NetworkSettings.Ports "5432/tcp")}}{{(index (index .NetworkSettings.Ports "5432/tcp") 0).HostPort}}{{end}}' "$PG_CONTAINER" 2>/dev/null || true)
|
|
|
|
PG_HOST="127.0.0.1"
|
|
PG_OK=0
|
|
if [ -n "$PG_PORT" ]; then
|
|
echo " PG端口映射: 127.0.0.1:$PG_PORT"
|
|
for i in $(seq 1 30); do
|
|
if docker inspect --format='{{.State.Health.Status}}' "$PG_CONTAINER" 2>/dev/null | grep -q healthy; then
|
|
break
|
|
fi
|
|
sleep 2
|
|
done
|
|
for i in $(seq 1 20); do
|
|
if (echo > /dev/tcp/127.0.0.1/$PG_PORT) 2>/dev/null; then
|
|
echo "✅ PG端口映射模式可用"
|
|
PG_OK=1
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
if [ "$PG_OK" != "1" ]; then
|
|
echo " ⚠️ 端口映射TCP不通,尝试容器IP"
|
|
fi
|
|
else
|
|
echo " ⚠️ 无映射端口,尝试容器IP"
|
|
fi
|
|
|
|
# 方式2: 容器IP直连
|
|
if [ "$PG_OK" != "1" ]; then
|
|
PG_IP=$(docker inspect --format='{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' "$PG_CONTAINER" 2>/dev/null || true)
|
|
if [ -n "$PG_IP" ] && [ "$PG_IP" != "null" ]; then
|
|
echo " PG容器IP: $PG_IP"
|
|
for i in $(seq 1 30); do
|
|
if docker inspect --format='{{.State.Health.Status}}' "$PG_CONTAINER" 2>/dev/null | grep -q healthy; then
|
|
break
|
|
fi
|
|
sleep 2
|
|
done
|
|
for i in $(seq 1 20); do
|
|
if (echo > /dev/tcp/$PG_IP/5432) 2>/dev/null; then
|
|
echo "✅ PG容器IP模式可用"
|
|
PG_HOST="$PG_IP"
|
|
PG_PORT=5432
|
|
PG_OK=1
|
|
break
|
|
fi
|
|
sleep 1
|
|
done
|
|
fi
|
|
fi
|
|
|
|
if [ "$PG_OK" != "1" ]; then
|
|
echo "❌ PG启动失败,打印诊断信息:"
|
|
docker inspect --format='状态:{{.State.Status}} 健康:{{.State.Health.Status}} 退出码:{{.State.ExitCode}}' "$PG_CONTAINER" 2>/dev/null || true
|
|
docker logs --tail=20 "$PG_CONTAINER" 2>/dev/null || true
|
|
exit 1
|
|
fi
|
|
|
|
echo "PostgreSQL (Docker) ready on $PG_HOST:$PG_PORT"
|
|
export DATABASE_URL="postgresql+psycopg://postgres:postgres@$PG_HOST:$PG_PORT/xiaoxia_saas"
|
|
else
|
|
export DATABASE_URL="postgresql+psycopg://postgres:postgres@127.0.0.1:5432/xiaoxia_saas"
|
|
fi
|
|
|
|
PYTHONPATH="$PWD/apps/api:$PWD" python3 -m alembic upgrade head
|
|
echo "✅ Alembic migrations applied successfully"
|
|
|
|
echo ""
|
|
echo "=== CI Validate: 所有检查通过 ✅ ==="
|