Commit 3a4239a0 authored by Dominik Charousset's avatar Dominik Charousset

Fix path for gcovr call

parent 4c6f3f35
...@@ -82,7 +82,7 @@ buildEnvironments = [ ...@@ -82,7 +82,7 @@ buildEnvironments = [
// Called *after* a build succeeded. // Called *after* a build succeeded.
def coverageReport() { def coverageReport() {
dir('caf-sources') { dir('caf-sources') {
sh 'gcovr -e examples -e tools -e libcaf_test -e ".*/test/.*" -e libcaf_core/caf/scheduler/profiled_coordinator.hpp -x -r .. > coverage.xml' sh 'gcovr -e examples -e tools -e libcaf_test -e ".*/test/.*" -e libcaf_core/caf/scheduler/profiled_coordinator.hpp -x -r . > coverage.xml'
archiveArtifacts '**/coverage.xml' archiveArtifacts '**/coverage.xml'
cobertura([ cobertura([
autoUpdateHealth: false, autoUpdateHealth: false,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment