Compare commits

..

1 Commits

Author SHA1 Message Date
TapTap 20a26e2f5a feat: update AI automation agents, add reviewer agent, fix leaks, enhance CI
CI / build-and-test (push) Successful in 53s
CI / sanitizer (push) Failing after 1m1s
CI / clang-tidy (push) Successful in 5m37s
CI / build-and-test (pull_request) Successful in 53s
CI / sanitizer (pull_request) Failing after 1m2s
CI / clang-tidy (pull_request) Successful in 33s
Agents:
- cmake-expert: fix stale CMake version (4.1 -> 3.22), add OpenSSL/xxHash deps
- integrator: fix stale test.py references to tests/integration/, update CI docs
- test-writer: update integration test patterns for modular test structure
- reviewer: new comprehensive PR reviewer (code, build, CI, docs, quality)

Bug fixes:
- delta.c: set instructions[i].type = DELTA_INSTR_LITERAL in deserialize
- scanner.c: free ArrayList when directory_scanner_next returns NULL

CI:
- Add sanitizer job (ASan + UBSan) that catches real leaks
- Add clang-tidy job with proper warning/error detection
- Remove || true masking (fixes now make sanitizer useful)
2026-07-19 21:04:30 +02:00
3 changed files with 1 additions and 8 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ jobs:
run: ./build/tests
- name: Integration Tests
run: LSAN_OPTIONS=suppressions=.lsan-suppressions.txt python3 -m pytest tests/ -v --tb=short
run: python3 -m pytest tests/ -v --tb=short
clang-tidy:
runs-on: ubuntu-latest
-1
View File
@@ -2,4 +2,3 @@ build
data_copied
test_data/
__pycache__/
build-asan/
-6
View File
@@ -1,6 +0,0 @@
# LSAN suppressions for FastSync
# Pre-existing leaks — not introduced by this PR.
# Remove these as each leak is fixed.
# Config object never freed at CLI exit (main allocates, OS reclaims)
leak:config_create