X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=jenkins%2Fci-pipelines%2Fci_stage_3.groovy;h=36c7a96ac26081275cc2e70c1c5a5be400f38175;hb=refs%2Fchanges%2F43%2F6543%2F1;hp=8dd70295c0aff783f2c9f8531f3005ab954fa16d;hpb=0cc90aabd1fbb67ef6340f41b75dee12777a4fb3;p=osm%2Fdevops.git diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy index 8dd70295..36c7a96a 100644 --- a/jenkins/ci-pipelines/ci_stage_3.groovy +++ b/jenkins/ci-pipelines/ci_stage_3.groovy @@ -52,8 +52,7 @@ def uninstall_osm(stackName) { def run_systest(stackName,tagName,testName) { tempdir = sh(returnStdout: true, script: "mktemp -d").trim() sh "docker run --network net${stackName} -v ${tempdir}:/usr/share/osm-devops/systest/reports osm/osmclient:${tagName} make -C /usr/share/osm-devops/systest ${testName}" - cp "${tempdir}/*.xml ." - junit '*.xml' + junit "${tempdir}/*.xml" } node("${params.NODE}") {