We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 940039b commit e41d80eCopy full SHA for e41d80e
.buildkite/log-results.sh
@@ -14,11 +14,11 @@ for f in $files; do
14
15
"
16
17
- FAILED_TESTS=`grep -A1 "E,.*" $f`
+ FAILED_TESTS=`grep -A1 "E,.*" $f | sed 's/\#/-/g' | sed 's/^--/\n/g'`
18
if [[ -n "$FAILED_TESTS" ]]; then
19
- buildkite-agent annotate --append "Failures in $f
20
-
+ buildkite-agent annotate --append "<details>" --style 'warning' --context 'ctx-failures'
+ buildkite-agent annotate --append "<summary>Failures in $f</summary>
21
$FAILED_TESTS
22
-"
+</details>" --style 'warning' --context 'ctx-failures'
23
fi
24
done
0 commit comments