Skip to content

Commit 2c374d7

Browse files
committed
[CI] Log Results error format
1 parent a66f063 commit 2c374d7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.buildkite/log-results.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ for f in $files; do
1616

1717
FAILED_TESTS=`grep -A1 "E,.*" $f`
1818
if [[ -n "$FAILED_TESTS" ]]; then
19-
buildkite-agent annotate --append "Failures in $f
20-
21-
$FAILED_TESTS
22-
"
19+
buildkite-agent annotate --append "Failures in $f"
20+
buildkite-agent annotate --apend `echo $FAILED_TESTS | sed 's/\#//g'`
2321
fi
2422
done

0 commit comments

Comments
 (0)