preserve images from failed junit tests in jenkins
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2024-08-20 15:23:17 -04:00
parent 787160a098
commit 2733c60b2a

2
Jenkinsfile vendored
View File

@ -50,7 +50,7 @@ pipeline {
}
post {
always {
junit 'target/surefire-reports/*.xml'
junit testResults: 'target/surefire-reports/*.xml', keepLongStdio: true, testDataPublishers: [[$class:'AttachmentPublisher']]
}
}
}