Skip to content

Commit 9446d0c

Browse files
committed
[CI] Update awk for log-results
1 parent 6e015df commit 9446d0c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.buildkite/log-results.sh

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

1717
FAILED_TESTS=`grep "E," $f`
1818
if [[ -n "$FAILED_TESTS" ]]; then
19-
buildkite-agent annotate --append "#### Failures in $f "
20-
buildkite-agent annotate --append `grep "E," $f | awk -F '-- :' '{print $2}'`
19+
buildkite-agent annotate --append "#### Failures in $f
20+
"
21+
buildkite-agent annotate --append `grep "E," $f`
22+
buildkite-agent annotate --append "
23+
"
2124
fi
2225
done

0 commit comments

Comments
 (0)