Commit 4ca9649
## Summary
- Pin iseriser to `741a3b63e7619b6e9cfe7f91b04d7ccfb130b1ca` (current
`main` HEAD, post-#20/#21/#22) instead of floating `--branch main`.
- Drop the prefix-matching `restore-keys` and key the cache by the rev
SHA so a future bump actually invalidates it.
- Always re-install with `--force`; the existence-check short-circuit
was the proximate cause of cached pre-#20 binaries surviving the fix
landing 11 days ago.
## Why
[iseriser#20](hyperpolymath/iseriser#20) (merged
2026-05-20) added GADT-skip to `abi-emit-manifest` so `data … where`
declarations (like vordr-mcp's `MonotonicDegradation` proof relation) no
longer crash with `Error: data declaration has no \`=\``. But this
repo's CI never picked up the new binary:
```yaml
# Before
key: iseriser-${{ runner.os }}-${{ github.sha }}
restore-keys: |
iseriser-${{ runner.os }}-
```
`restore-keys` prefix-matches across every commit, so once any cache
existed for ubuntu it'd restore that one. Combined with:
```bash
if ! command -v iseriser >/dev/null 2>&1; then
cargo install --git … --branch main --locked
fi
```
the install only fired if no binary existed at all. Result: stale binary
forever. Latest main run on 2026-05-26 (`gh run view 26426084041`) still
printed `Error: data declaration has no \`=\`` against vordr-mcp.
## Test plan
- [ ] CI runs `ABI Drift Gate` against this PR.
- [ ] `iseriser --version` log shows the post-#20 build.
- [ ] vordr-mcp line in the per-cartridge output reads ` ✓ vordr-mcp`
rather than ` ✗ vordr-mcp EMIT FAILED`.
- [ ] No regression in any other allowlisted cartridge.
Closes #111
Refs hyperpolymath/standards#92, hyperpolymath/iseriser#20.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 0724af5 commit 4ca9649
1 file changed
Lines changed: 15 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
57 | 64 | | |
58 | 65 | | |
| 66 | + | |
| 67 | + | |
59 | 68 | | |
60 | 69 | | |
61 | 70 | | |
62 | 71 | | |
63 | 72 | | |
64 | | - | |
65 | | - | |
66 | | - | |
| 73 | + | |
67 | 74 | | |
68 | 75 | | |
| 76 | + | |
| 77 | + | |
69 | 78 | | |
70 | 79 | | |
71 | | - | |
72 | | - | |
73 | | - | |
74 | | - | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
75 | 83 | | |
76 | 84 | | |
77 | 85 | | |
| |||
0 commit comments