Phase 12: 統一TypeBox ABI実装開始 - ChatGPT5による極小コアABI基盤構築
- TypeBox ABI雛形: メソッドスロット管理システム追加 - Type Registry: Array/Map/StringBoxの基本メソッド定義 - Host API: C ABI逆呼び出しシステム実装 - Phase 12ドキュメント整理: 設計文書統合・アーカイブ化 - MIR Builder: クリーンアップと分離実装完了 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
19
.github/workflows/box_first_guard.yml
vendored
19
.github/workflows/box_first_guard.yml
vendored
@ -28,6 +28,24 @@ jobs:
|
||||
echo "[OK] No direct env reads outside jit::config/rt"
|
||||
fi
|
||||
|
||||
- name: Report direct env reads (global advisory)
|
||||
run: |
|
||||
echo "[ADVISORY] Listing direct std::env::var reads outside config aggregators..."
|
||||
rg -n "std::env::var\(" src \
|
||||
| rg -v 'src/jit/config\.rs|src/config/env\.rs' \
|
||||
|| true
|
||||
echo "[NOTE] Above is advisory; prefer using config::env or jit::config for critical flags."
|
||||
|
||||
- name: Prevent reintroducing removed modular builder feature (advisory)
|
||||
run: |
|
||||
set -e
|
||||
if rg -n "mir_modular_builder" Cargo.toml src || true; then
|
||||
echo "[GUARD] Found 'mir_modular_builder' mention (advisory). This feature was removed."
|
||||
exit 1
|
||||
else
|
||||
echo "[OK] No 'mir_modular_builder' mentions found"
|
||||
fi
|
||||
|
||||
- name: Enforce single B1 ABI switch point (advisory)
|
||||
run: |
|
||||
set -e
|
||||
@ -43,4 +61,3 @@ jobs:
|
||||
- name: Print reminder for stats.jsonl (advisory)
|
||||
run: |
|
||||
echo "[NOTE] Consider emitting stats.jsonl with {function, abi_mode, reason} at least once per run."
|
||||
|
||||
|
||||
Reference in New Issue
Block a user