From ff21855d3f91afc8b9b2cf5ce043311765cc1108 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 24 Jan 2025 11:14:23 +0000 Subject: [PATCH] jenkins: Remove the range option from lcov This is not understood by older versions. Signed-off-by: Michael Tremer --- Jenkinsfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c7330011..c8752ecf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -232,16 +232,14 @@ pipeline { lcov \ --capture \ --directory . \ - --output-file coverage.info \ - --ignore-errors range,range + --output-file coverage.info """ // Generate HTML report sh """ genhtml \ coverage.info \ - --output-directory lcov \ - --ignore-errors range,range + --output-directory lcov """ // Upload the report -- 2.47.3