There was an error while loading. Please reload this page.
1 parent 04b7dc2 commit 9fb34bfCopy full SHA for 9fb34bf
1 file changed
.github/workflows/validate.yml
@@ -372,6 +372,13 @@ jobs:
372
# mcpp returns the xlings child's exit code, so 127 may well be
373
# xlings'. Drive xlings directly on the same package and show what it
374
# says — mcpp swallows the child's stderr on this path.
375
+ # MCPP_VERBOSE=1 prints the exact xlings invocation (xlings.cppm:923).
376
+ # This path otherwise swallows the child's stderr, which is why the
377
+ # 127 arrives with no output at all.
378
+ echo "=== retry under MCPP_VERBOSE ==="
379
+ vrc=0
380
+ MCPP_VERBOSE=1 "$MCPP" test -p tests/examples/ffmpeg 2>&1 | tail -60 || vrc=$?
381
+ echo "=== verbose retry exit status: $vrc ==="
382
echo "=== locating xlings ==="
383
XL=$(find . "$HOME" -name 'xlings.exe' -path '*registry/bin*' 2>/dev/null | head -1)
384
echo "xlings: $XL"
0 commit comments