Commit fc9a758
fix(ci): hydrate script fed slugs to python via stdin, colliding with the heredoc program
The hydrate step ran python via `python - <<'PY'`, which reads the PROGRAM
from stdin — so piping the slug list into the same stdin collided: the
interpreter either sees an empty sys.stdin (CI: heredoc wins → hydrated=0,
printf broken pipe → pipefail exit 1) or tries to execute the slugs as
source. Never worked; the conformance workflow's first real runs both died
here. Pass the slug list in a temp file (SLUGFILE) and read that instead of
sys.stdin, keeping the heredoc as the program. Verified end-to-end against a
stub raincloud (under-cap hydrate, over-cap skip, null-size-as-0 all correct).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>1 parent 6e42a30 commit fc9a758
1 file changed
Lines changed: 14 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
70 | | - | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
71 | 80 | | |
72 | 81 | | |
73 | | - | |
74 | 82 | | |
75 | 83 | | |
76 | 84 | | |
| |||
85 | 93 | | |
86 | 94 | | |
87 | 95 | | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
88 | 99 | | |
89 | 100 | | |
90 | | - | |
| 101 | + | |
91 | 102 | | |
92 | 103 | | |
93 | 104 | | |
| |||
0 commit comments