Jenkinsfile: collect junit.xml for all architectures
Jenkins groups them per stage, so collecting them for all architectures is possible (without them conflicting or becoming ambiguous) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
7f9328ad2e
commit
e2f5b78e78
1 changed files with 10 additions and 0 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -335,6 +335,11 @@ pipeline {
|
||||||
hack/test/unit
|
hack/test/unit
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
junit testResults: 'bundles/junit-report.xml', allowEmptyResults: true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage("Integration tests") {
|
stage("Integration tests") {
|
||||||
environment { TEST_SKIP_INTEGRATION_CLI = '1' }
|
environment { TEST_SKIP_INTEGRATION_CLI = '1' }
|
||||||
|
@ -496,6 +501,11 @@ pipeline {
|
||||||
hack/test/unit
|
hack/test/unit
|
||||||
'''
|
'''
|
||||||
}
|
}
|
||||||
|
post {
|
||||||
|
always {
|
||||||
|
junit testResults: 'bundles/junit-report.xml', allowEmptyResults: true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
stage("Integration tests") {
|
stage("Integration tests") {
|
||||||
environment { TEST_SKIP_INTEGRATION_CLI = '1' }
|
environment { TEST_SKIP_INTEGRATION_CLI = '1' }
|
||||||
|
|
Loading…
Reference in a new issue