Files
foxhunt/infra
jgrusewski d999dfd385 fix(argo): replace grep -q | TEST_BIN--list pipe with capture-then-grep to avoid SIGPIPE
`grep -q` exits early on first match, closing stdin to upstream
`$TEST_BIN --list`. With pipefail enabled, that SIGPIPE on the upstream
process bubbles up as exit 141 and kills the workflow before the
sanitizer/nsys can launch.

Capture --list output once into a variable, then grep the captured
string (which doesn't pipe to a process). Same pattern for the
already-broken-but-defensive head -30 in the error branch.
2026-04-28 22:36:49 +02:00
..