ci.jpl: Run helper script to produce merged code coverage report
Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: If3816f112aa32cc07a702490ad87dc39c2ca7a39
diff --git a/jenkins/ci.jpl b/jenkins/ci.jpl
index 04f4909..a0bb26e 100644
--- a/jenkins/ci.jpl
+++ b/jenkins/ci.jpl
@@ -574,6 +574,12 @@
if (boot_result.toInteger() < 1 || test_result.toInteger() < 1) {
error("Marking job as failed due to failed boots: \"${boot_output}\" or tests: \"${test_output}\"")
}
+
+ if (env.CODE_COVERAGE_EN == "TRUE") {
+ println("Producing merged report")
+ sh(script: """./tf-m-ci-scripts/lava_helper/codecov_merge.sh""")
+ archiveArtifacts artifacts: 'merged_report/**', allowEmptyArchive: true
+ }
}
}
}