feat: .NET 운영 리포트 렌더러와 CI 경로 전환
- operational_report.json/md와 final_decision_packet_v4 생성 경로를 .NET으로 전환했습니다. - CI, 운영 게이트, 릴리스 DAG, 대시보드의 운영 진입점을 새 경로로 정렬했습니다. - legacy Python 렌더러는 비운영으로 명시했습니다.
This commit is contained in:
@@ -9,10 +9,9 @@ from validate_renderer_no_calculation_v1 import main as validate_v1
|
||||
|
||||
def main() -> int:
|
||||
ap = argparse.ArgumentParser()
|
||||
ap.add_argument("--renderer", default="tools/render_operational_report.py")
|
||||
ap.add_argument("--renderer", default="src/dotnet/QuantEngine.Tools/Program.cs")
|
||||
args = ap.parse_args()
|
||||
# v2 keeps the same static scan but allows explicit renderer path for future parity checks.
|
||||
# The underlying implementation already validates the current canonical renderer.
|
||||
# v2 keeps the same static scan but points at the canonical .NET renderer.
|
||||
_ = Path(args.renderer)
|
||||
return validate_v1()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user