Commit e0466fc
deps: bump zspec v0.9.1 → v0.9.2 — fixes Linux CI deadlock
zspec v0.9.1's `.simple`-mode runner left `std.testing.io_instance`
uninitialized; any test reaching for `std.testing.io` (we have one:
`saveFlow + loadFromFile round trip via tmpDir`) tried to enqueue work
onto a zero-init `Io.Threaded` pool, which deadlocks on Linux but
silently succeeds on macOS. CI runs hung 50-60min until the 10-min cap.
zspec#44 fixed it in v0.9.2 by initializing `std.testing.io_instance`
at the top of `runner.zig:main()` and deinit'ing on return (mirroring
the stdlib terminal test runner). flow-codegen was on the pre-fix
v0.9.1; bumping picks up the fix.
Tests pass locally (89/89, 128ms). The 10-min CI cap stays in place
as a safety net.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>1 parent 52f89eb commit e0466fc
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | | - | |
| 8 | + | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
0 commit comments