From 740e877d19b5e77c8d7f64a85e805c0e68602d41 Mon Sep 17 00:00:00 2001 From: garciadeblas Date: Tue, 28 Feb 2023 12:56:07 +0100 Subject: [PATCH] Update the artifacts stored in stage2 This change updates the patterns of the artifacts to be stored by the method `archive` in `ci_helper.groovy`. The pattern "dists/*.gz" and "dists/*Packages" corresponding to index files for debian repos are no longer required. The pattern "dist/*.whl" corresponding to Python wheel files is now required, since it is an additional artifact generated in stage2. Change-Id: Id87fcb98b2d79a9bd0b64fdaca44da8acd9e1cb1 Signed-off-by: garciadeblas --- jenkins/ci-pipelines/ci_helper.groovy | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/jenkins/ci-pipelines/ci_helper.groovy b/jenkins/ci-pipelines/ci_helper.groovy index 0b41169d..33de638c 100644 --- a/jenkins/ci-pipelines/ci_helper.groovy +++ b/jenkins/ci-pipelines/ci_helper.groovy @@ -132,13 +132,7 @@ def archive(artifactory_server,mdg,branch,status) { def uploadSpec = """{ "files": [ { - "pattern": "dists/*.gz", - "target": "${repo_prefix}${mdg}/${branch}/${BUILD_NUMBER}/", - "props": "${properties}", - "flat": false - }, - { - "pattern": "dists/*Packages", + "pattern": "dist/*.whl", "target": "${repo_prefix}${mdg}/${branch}/${BUILD_NUMBER}/", "props": "${properties}", "flat": false -- 2.25.1