From 473c541d5bf7a126e426490f0228f8812cc70b28 Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Mon, 3 Apr 2023 13:32:22 -0400 Subject: [PATCH] Partial revert of 13026 The *.gz and *Packages are actually used in the creation of the debian repository for the installers. Change-Id: I56ba0ce478fba9bcaeb58d6f2abaf235a4eab78a Signed-off-by: Mark Beierl --- jenkins/ci-pipelines/ci_helper.groovy | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/jenkins/ci-pipelines/ci_helper.groovy b/jenkins/ci-pipelines/ci_helper.groovy index 33de638c..390c7699 100644 --- a/jenkins/ci-pipelines/ci_helper.groovy +++ b/jenkins/ci-pipelines/ci_helper.groovy @@ -131,6 +131,18 @@ 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", + "target": "${repo_prefix}${mdg}/${branch}/${BUILD_NUMBER}/", + "props": "${properties}", + "flat": false + }, { "pattern": "dist/*.whl", "target": "${repo_prefix}${mdg}/${branch}/${BUILD_NUMBER}/", -- 2.25.1