Skip to content

Commit a335bac

Browse files
DuqueOMclaude
andcommitted
chore(make): cover the ADR index gate in make verify
The gate suite is the local mirror of the CI contract; a gate that CI runs and `make verify` does not is the same blind spot in miniature. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
1 parent 07e814e commit a335bac

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@ verify: ## Run every fast CI gate locally (the pre-push contract). Slow E2E live
202202
printf ' %-34s FAIL\n' "adapter-sync"; \
203203
failed="$$failed sync_agentic_adapters"; \
204204
fi; \
205+
if python3 scripts/generate_adr_index.py --check >/tmp/adr_index.out 2>&1; then \
206+
printf ' %-34s PASS\n' "adr-index"; \
207+
else \
208+
printf ' %-34s FAIL\n' "adr-index"; \
209+
failed="$$failed generate_adr_index"; \
210+
fi; \
205211
if [ -n "$$failed" ]; then \
206212
echo "$(RED)✗ failing gates:$$failed$(NC)"; \
207213
for g in $$failed; do echo "--- $$g ---"; tail -20 /tmp/$$g.out; done; \

0 commit comments

Comments
 (0)