From: Mike Marchetti Date: Fri, 4 May 2018 14:26:42 +0000 (-0400) Subject: Output debug info after testrun X-Git-Tag: v3.1.0~2 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=34334657e6cd3794e0c4f712dc6e465e5cc31616;p=osm%2Fdevops.git Output debug info after testrun Change-Id: I3420956b06be8b083dd1d4d886c038591735e68e Signed-off-by: Mike Marchetti --- diff --git a/jenkins/ci-pipelines/ci_helper.groovy b/jenkins/ci-pipelines/ci_helper.groovy index 94e1b705..32967f56 100644 --- a/jenkins/ci-pipelines/ci_helper.groovy +++ b/jenkins/ci-pipelines/ci_helper.groovy @@ -75,7 +75,8 @@ def systest_run(container_name, test, source_rc = null) { pre_source = "/tmp/" + source_rc.substring(source_rc.lastIndexOf('/')+1) lxc_file_push(container_name,source_rc,pre_source) - lxc_run(container_name, "sh -c '. ${pre_source}; make -C devops/systest OSM_HOSTNAME=${so_ip} OSM_RO_HOSTNAME=${ro_ip} ${test}'") + result = lxc_run(container_name, "sh -c '. ${pre_source}; make -C devops/systest OSM_HOSTNAME=${so_ip} OSM_RO_HOSTNAME=${ro_ip} ${test}'") + echo result } else {