- Institutional / JVMTM / reserve-provenance / GRU transport + standards JSON - Validation and verify scripts (Blockscout labels, x402, GRU preflight, P1 local path) - Wormhole wiring in AGENTS, MCP_SETUP, MASTER_INDEX, 04-configuration README - Meta docs, integration gaps, live verification log, architecture updates - CI validate-config workflow updates Operator/LAN items, submodule working trees, and public token-aggregation edge routes remain follow-up (see TODOS_CONSOLIDATED P1). Made-with: Cursor
28 lines
638 B
Bash
Executable File
28 lines
638 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Run the repo's local deterministic green-path tests for Chain 138 / GRU transport.
|
|
# Usage: bash scripts/verify/run-repo-green-test-path.sh
|
|
|
|
set -euo pipefail
|
|
|
|
PROJECT_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
|
|
log() { printf '%s\n' "$*"; }
|
|
ok() { printf '[OK] %s\n' "$*"; }
|
|
|
|
run_step() {
|
|
local label="$1"
|
|
shift
|
|
log ""
|
|
log "=== ${label} ==="
|
|
"$@"
|
|
}
|
|
|
|
run_step "Config validation" \
|
|
bash "$PROJECT_ROOT/scripts/validation/validate-config-files.sh"
|
|
|
|
run_step "Chain 138 package CI targets" \
|
|
pnpm --dir "$PROJECT_ROOT/smom-dbis-138" run test:ci
|
|
|
|
log ""
|
|
ok "Repo green-path tests passed."
|