Explorar el Código

Adjust path for archiving JUnit files to capture both locations that are in use

Somehow JUnit stores test-results either under test-result or under test-result/test,
so let's look at both directories for now

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888458 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_5_1_0
Dominik Stadler hace 3 años
padre
commit
6458acb931
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      jenkins/create_jobs.groovy

+ 2
- 2
jenkins/create_jobs.groovy Ver fichero

@@ -474,7 +474,7 @@ poijobs.each { poijob ->
warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
resolveRelativePaths()
}
archiveJunit('*/build/test-results/*.xml') {
archiveJunit('*/build/test-results/**/TEST-*.xml') {
testDataPublishers {
publishTestStabilityData()
}
@@ -580,7 +580,7 @@ xmlbeansjobs.each { xjob ->
warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) {
resolveRelativePaths()
}
archiveJunit('build/test-results/TEST-*.xml') {
archiveJunit('build/test-results/**/TEST-*.xml') {
testDataPublishers {
publishTestStabilityData()
}

Cargando…
Cancelar
Guardar