Commit 47f55edb authored by Raphael Defosseux's avatar Raphael Defosseux

fix(ci): being more flexible when copying artifacts from testing pipelines

Signed-off-by: default avatarRaphael Defosseux <raphael.defosseux@eurecom.fr>
parent 0377c3c1
...@@ -371,7 +371,7 @@ pipeline { ...@@ -371,7 +371,7 @@ pipeline {
always { always {
script { script {
copyArtifacts(projectName: params.AMF_BT_PipelineName, copyArtifacts(projectName: params.AMF_BT_PipelineName,
filter: '*_results_oai_amf_bt.html', filter: '*_results_oai_amf_bt*.html',
selector: lastCompleted()) selector: lastCompleted())
} }
} }
...@@ -403,7 +403,7 @@ pipeline { ...@@ -403,7 +403,7 @@ pipeline {
always { always {
script { script {
copyArtifacts(projectName: params.CN5G_FED_PipelineName, copyArtifacts(projectName: params.CN5G_FED_PipelineName,
filter: '*_results_oai_cn5g.html', filter: '*_results_oai_cn5g*.html',
selector: lastCompleted()) selector: lastCompleted())
} }
} }
...@@ -433,7 +433,7 @@ pipeline { ...@@ -433,7 +433,7 @@ pipeline {
always { always {
script { script {
copyArtifacts(projectName: params.CN5G_FED_OC_PipelineName, copyArtifacts(projectName: params.CN5G_FED_OC_PipelineName,
filter: '*_results_oai_cn5g_oc.html', filter: '*_results_oai_cn5g_oc*.html',
selector: lastCompleted()) selector: lastCompleted())
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment