-
Improvement
-
Resolution: Unresolved
-
Minor
-
Jenkins ver. 1.613
Jenkins Cobertura Plugin 1.9.7
Add support for expanding environment variables - when injecting variables to build process using "inject environment variables to build process" option I'd like to be able to use them in "Cobertura xml report pattern" field i.e.: $PROJECT_HOME/target/cobertura-coverage.xml. This feature is supported by most of other report plugins (i.e. JUnit reporter plugin).
I second that. My use case is following: I have a job that does incremental builds, i.e., multiple builds share the same workspace
(which is cleanded every night to make sure it builds from scratch).
The Cobertura results .xml files (as well as Junit result .xml files) has Jenkins BUILD_NUMBER in it. I need to use pattern like
reports/*mercurial*build${BUILD_NUMBER}*Coverage.xml
to match coverage reports.