Update junit test results

Change-Id: Idfddb862e035046b42f427f8b1ec86b1641e4c59
Signed-off-by: Mike Marchetti <mmarchetti@sandvine.com>
diff --git a/jenkins/ci-pipelines/ci_stage_3.groovy b/jenkins/ci-pipelines/ci_stage_3.groovy
index 67f3491..503b313 100644
--- a/jenkins/ci-pipelines/ci_stage_3.groovy
+++ b/jenkins/ci-pipelines/ci_stage_3.groovy
@@ -53,7 +53,8 @@
 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}"
-    junit  "${tempdir}/*.xml"
+    sh "cp ${tempdir}/* ."
+    junit  '*.xml'
 }
 
 node("${params.NODE}") {