-
Type:
Bug
-
Resolution: Cannot Reproduce
-
Priority:
Major
-
Component/s: xunit-plugin
-
None
-
Environment:Jenkins Version: 2.138.2
The image that should show test results is broken.
Howewer, test results are accessible and seem to be ok.
Installed plugins and versions:
Test project attached.
Sample pipeline:
pipeline {
agent {
node {
label 'ubuntu14.04'
}
}
stages {
stage("checkout") {
steps {
checkout scm
}
}
stage("build") {
steps {
sh "cmake ."
sh '/usr/bin/cmake --build . -- test ARGS="--no-compress-output -T Test"'
sh "ls -la Testing/*"
xunit([CTest(deleteOutputFiles: true, failIfNotNew: true, pattern: 'Testing/*/Test.xml', skipNoTestFiles: false, stopProcessingIfError: true)])
}
}
}
}