Skip to content

Commit eaa62f3

Browse files
committed
test: TEMP — verbose retry on mcpp test failure (remove before merge)
1 parent 3fa6f87 commit eaa62f3

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/ci-macos.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,11 @@ jobs:
325325
MCPP=$(find target -path "*/bin/mcpp" | head -1)
326326
MCPP=$(cd "$(dirname "$MCPP")" && pwd)/$(basename "$MCPP")
327327
"$MCPP" self config --mirror GLOBAL
328-
"$MCPP" test
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
331+
exit 1
332+
}
329333
330334
- name: "TEMP forensics: static libc++ exit-abort matrix (remove before merge)"
331335
if: always()

0 commit comments

Comments
 (0)