We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fa6f87 commit eaa62f3Copy full SHA for eaa62f3
1 file changed
.github/workflows/ci-macos.yml
@@ -325,7 +325,11 @@ jobs:
325
MCPP=$(find target -path "*/bin/mcpp" | head -1)
326
MCPP=$(cd "$(dirname "$MCPP")" && pwd)/$(basename "$MCPP")
327
"$MCPP" self config --mirror GLOBAL
328
- "$MCPP" test
+ "$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
331
+ exit 1
332
+ }
333
334
- name: "TEMP forensics: static libc++ exit-abort matrix (remove before merge)"
335
if: always()
0 commit comments