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 29fd15f commit 22675f3Copy full SHA for 22675f3
ci-build.sh
@@ -219,6 +219,20 @@ EOL
219
220
# --== POST-BUILD ACTIONS ==--
221
222
+ # Dump logs for any failing unit tests.
223
+ if [ -d target/surefire-reports ]
224
+ then
225
+ find target/surefire-reports -name '*.txt' | while read report
226
+ do
227
+ if grep -qF 'FAILURE!' "$report"
228
229
+ echo
230
+ echo "[$report]"
231
+ cat "$report"
232
+ fi
233
+ done
234
235
+
236
if [ "$deployOK" -a "$success" -eq 0 ]; then
237
echo
238
echo "== Invalidating SciJava Maven repository cache =="
0 commit comments