Fix Ant glob path expression for 'Check' stage junit test results.

This commit is contained in:
John Blum
2018-03-22 14:38:48 -07:00
parent cdd3c2702b
commit 87f2acada9

2
Jenkinsfile vendored
View File

@@ -22,7 +22,7 @@ try {
throw cause
}
finally {
junit '**/build/*-results/*.xml'
junit '**/build/test-results/test/*.xml'
}
}
}