Reviewer 역할 검증 보고서 smoke (role-reviewer-live-1522-001)
All checks were successful
ci / test (pull_request) Successful in 1m50s
All checks were successful
ci / test (pull_request) Successful in 1m50s
This commit is contained in:
parent
2a85dc2399
commit
d7057116f2
1 changed files with 51 additions and 0 deletions
51
verification/run-verification.sh
Normal file
51
verification/run-verification.sh
Normal file
|
|
@ -0,0 +1,51 @@
|
||||||
|
#!/bin/bash
|
||||||
|
# Complete Verification Runner
|
||||||
|
# Runs smoke-test.sh then generate-evidence.sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
echo "=========================================="
|
||||||
|
echo "Runtime Role Matrix - Verification Suite"
|
||||||
|
echo "=========================================="
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Step 1: Run smoke tests
|
||||||
|
echo ">>> Step 1: Running Smoke Tests..."
|
||||||
|
echo ""
|
||||||
|
bash verification/smoke-test.sh
|
||||||
|
SMOKE_EXIT=$?
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Step 2: Generate evidence report
|
||||||
|
echo ">>> Step 2: Generating Evidence Report..."
|
||||||
|
echo ""
|
||||||
|
bash verification/generate-evidence.sh
|
||||||
|
EVIDENCE_EXIT=$?
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Step 3: Display results
|
||||||
|
echo "=========================================="
|
||||||
|
echo "Verification Complete"
|
||||||
|
echo "=========================================="
|
||||||
|
echo ""
|
||||||
|
echo "Output files:"
|
||||||
|
echo " - verification/smoke-test-report.json"
|
||||||
|
echo " - verification/evidence-report.json"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Show evidence report summary if jq available
|
||||||
|
if command -v jq &>/dev/null; then
|
||||||
|
echo "Evidence Report Summary:"
|
||||||
|
jq '.summary' verification/evidence-report.json 2>/dev/null || true
|
||||||
|
echo ""
|
||||||
|
echo "CI Pipeline Checklist:"
|
||||||
|
jq -r '.ci_pipeline_checklist[] | " [\(.status)] \(.description)"' verification/evidence-report.json 2>/dev/null || true
|
||||||
|
echo ""
|
||||||
|
echo "Operational Risks Checklist:"
|
||||||
|
jq -r '.operational_risks_checklist[] | " [\(.status)] \(.description)"' verification/evidence-report.json 2>/dev/null || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# Exit with appropriate code
|
||||||
|
exit $((SMOKE_EXIT || EVIDENCE_EXIT))
|
||||||
Loading…
Add table
Add a link
Reference in a new issue