Commit 74c524c
committed
ci(cross-platform): gate on Linux, make macOS/Windows non-blocking
Focus CI on Linux now and defer full cross-platform support to a later
effort. The FFI is currently POSIX-only — probe.zig uses fcntl/F.GETFL
for non-blocking sockets and cli.zig uses posix.getenv — so Windows does
not compile (F is void on Windows; posix.getenv is unavailable there) and
macOS is build-only. Rather than block every PR on targets that are not
supported yet:
- Linux: gates as before (build + integration tests; continue-on-error false)
- macOS + Windows: still build for early signal, but continue-on-error true,
so they no longer fail the workflow or gate merges.
Full Windows/macOS support (fcntl -> ioctlsocket(FIONBIO),
posix.getenv -> std.process.getEnvVarOwned, and whatever else surfaces)
is tracked for a dedicated cross-platform effort.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01LvsZgNxFbeqfRmrVFNhJ8G1 parent cc0b75b commit 74c524c
1 file changed
Lines changed: 11 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
4 | 6 | | |
5 | 7 | | |
6 | 8 | | |
| |||
19 | 21 | | |
20 | 22 | | |
21 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
22 | 27 | | |
23 | 28 | | |
24 | 29 | | |
| 30 | + | |
25 | 31 | | |
26 | 32 | | |
27 | 33 | | |
| 34 | + | |
28 | 35 | | |
29 | 36 | | |
30 | 37 | | |
| 38 | + | |
31 | 39 | | |
32 | 40 | | |
33 | 41 | | |
34 | 42 | | |
| 43 | + | |
| 44 | + | |
35 | 45 | | |
36 | 46 | | |
37 | 47 | | |
| |||
0 commit comments