Added always

This commit is contained in:
Guillem Hernández Sola
2017-04-03 15:07:42 +02:00
parent b01e48d219
commit 7f27c8c3e6

View File

@@ -48,14 +48,16 @@ pipeline {
to: 'guillem@gromenware.com'
)
}
// publish html
publishHTML target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'target/surefire-reports/',
reportFiles: 'emailable-report.html',
reportName: 'Emailable Report'
]
always{
// publish html
publishHTML target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'target/surefire-reports/',
reportFiles: 'emailable-report.html',
reportName: 'Emailable Report'
]
}
}
}