We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaa62f3 commit 01f074dCopy full SHA for 01f074d
1 file changed
.github/workflows/ci-macos.yml
@@ -326,8 +326,13 @@ jobs:
326
MCPP=$(cd "$(dirname "$MCPP")" && pwd)/$(basename "$MCPP")
327
"$MCPP" self config --mirror GLOBAL
328
"$MCPP" test || {
329
- echo "=== TEMP forensics: retry verbose (remove before merge) ==="
330
- "$MCPP" test -v 2>&1 | grep -B3 -A12 -iE "error|undefined|ld64" | head -120
+ echo "=== TEMP forensics: retry verbose unfiltered (remove before merge) ==="
+ vm_stat | head -5
331
+ "$MCPP" test -v > /tmp/mtv.log 2>&1
332
+ echo "--- verbose tail ---"
333
+ tail -200 /tmp/mtv.log
334
+ echo "--- ninja FAILED lines ---"
335
+ grep -B2 -A20 "FAILED" /tmp/mtv.log | head -80
336
exit 1
337
}
338
0 commit comments