Commit graph

3 commits

Author SHA1 Message Date
google-labs-jules[bot]
e20653c44f Bolt: optimize repository validation with single-pass chunked reading
Optimized `scripts/ci_validate_repo.py` to improve memory efficiency and execution speed:
1. Combined separate file-scanning passes into a single `validate_files` function.
2. Implemented early size check via `p.stat().st_size` to fail immediately on large files before reading.
3. Switched from `read_bytes()` to chunked binary reading (64KB) to ensure constant memory footprint regardless of file size.
4. Added robust error handling for file access.

These changes prevent the validator from loading large files into memory and reduce redundant I/O operations.
2026-02-18 17:35:29 +00:00
copilot-swe-agent[bot]
e23f7cbb90 Add executable permissions to scripts and create verification document
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-01-06 20:41:06 +00:00
Cursor Agent
85c1e2f963 feat: Add GitHub Actions for CI, automerge, and sync
Co-authored-by: genxdbxfx3 <genxdbxfx3@gmail.com>
2025-12-27 06:02:09 +00:00