#!/usr/bin/env bash # # Fast local validation before pushing to main. CI takes 10+ minutes to # deliver a verdict; this catches the common failure classes in a few: # # 1. canonical completion guard (contract/verification coupling, per commit) # 2. guard/registry snapshot tests when the subsystem registry changed # 3. mutation registry audits (fail closed on unclassified API routes) # 4. compilation plus tests for the Go packages the outgoing commits touch # 5. frontend type-check when frontend-modern changed # # Usage: scripts/dev-prepush.sh [base-ref] # base-ref defaults to origin/main. Run `git fetch origin` first for an # accurate range. Tests here run without -race for speed; CI still runs # the full -race suite across all packages. set -uo pipefail ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" cd "$ROOT_DIR" BASE="${1:-origin/main}" FAILURES=0 step() { printf '\n=== %s ===\n' "$1"; } fail() { printf 'FAIL: %s\n' "$1"; FAILURES=$((FAILURES + 1)); } if ! git rev-parse --verify --quiet "$BASE" >/dev/null; then echo "Base ref $BASE not found; run git fetch origin first." >&2 exit 2 fi if ! git diff --quiet || ! git diff --cached --quiet; then echo "Note: working tree has uncommitted changes; only committed work is checked." fi AHEAD=$(git rev-list --count "$BASE"..HEAD) if [ "$AHEAD" -eq 0 ]; then echo "No commits ahead of $BASE; nothing to check." exit 0 fi CHANGED=$(git diff --name-only "$BASE"...HEAD) CHANGED_GO=$(printf '%s\n' "$CHANGED" | grep -E '\.go$' || true) step "Canonical completion guard (HEAD commit, CI mode)" if [ "$AHEAD" -gt 1 ]; then echo "Note: $AHEAD commits ahead; the guard is checked for HEAD only here, CI checks each commit." fi if ! git diff --name-only HEAD~1 HEAD | \ python3 scripts/release_control/canonical_completion_guard.py --files-from-stdin --diff-base HEAD~1; then fail "canonical completion guard" fi if printf '%s\n' "$CHANGED" | grep -q 'docs/release-control/v6/internal/subsystems/registry.json'; then step "Registry snapshot tests (registry.json changed)" python3 scripts/release_control/canonical_completion_guard_test.py || fail "guard snapshot test" python3 scripts/release_control/subsystem_lookup_test.py || fail "subsystem lookup snapshot test (slow, ~3m)" fi if [ -n "$CHANGED_GO" ]; then # internal/api embeds frontend-modern/dist; a stub keeps compilation working # in worktrees that never built the frontend. CI does the same for test jobs. if [ ! -f internal/api/frontend-modern/dist/index.html ]; then mkdir -p internal/api/frontend-modern/dist printf '