ci: publish JUnit and coverage reports
This commit is contained in:
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@@ -162,6 +162,21 @@ pipeline {
|
|||||||
"
|
"
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
|
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
junit(
|
||||||
|
testResults: 'backend/test-results/*.xml',
|
||||||
|
allowEmptyResults: true
|
||||||
|
)
|
||||||
|
|
||||||
|
archiveArtifacts(
|
||||||
|
artifacts: 'backend/coverage/**',
|
||||||
|
fingerprint: true,
|
||||||
|
allowEmptyArchive: true
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
stage('Frontend - Lint et Build') {
|
stage('Frontend - Lint et Build') {
|
||||||
|
|||||||
Reference in New Issue
Block a user