From b5004a214ced9aa00e1c756d7be7dd9f725c6552 Mon Sep 17 00:00:00 2001 From: Martin Hierholzer <martin.hierholzer@desy.de> Date: Tue, 2 Oct 2018 16:28:33 +0200 Subject: [PATCH] disabled valgrind and coverage report for now - to speed up testing the pipeline --- vars/buildTestDeploy.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vars/buildTestDeploy.groovy b/vars/buildTestDeploy.groovy index cad2936..8584c86 100644 --- a/vars/buildTestDeploy.groovy +++ b/vars/buildTestDeploy.groovy @@ -72,6 +72,7 @@ def transformIntoStep(ArrayList<String> dependencyList, String buildName) { return { stage(buildName) { node('Docker') { + checkout scm // we need root access inside the container and access to the dummy pcie devices of the host def dockerArgs = "-u 0 --device=/dev/mtcadummys0 --device=/dev/llrfdummys4 --device=/dev/noioctldummys5 --device=/dev/pcieunidummys6" docker.image("builder:${label}").inside(dockerArgs) { @@ -92,7 +93,7 @@ def doAll(ArrayList<String> dependencyList, String label, String buildType) { doBuild(dependencyList, label, buildType) doTest(label, buildType) - if(buildType == "Debug") { + if(buildType == "Debug DISABLED") { // Coverage report only works well in Debug mode, since optimisation might lead to underestimated coverage doCoverage(label, buildType) -- GitLab