From 890a1badd17b086d070daa4b40760583dca2b7b7 Mon Sep 17 00:00:00 2001 From: Zain Budhwani Date: Thu, 20 Jul 2023 02:59:36 +0000 Subject: [PATCH 1/2] Install necessary debs only --- azure-pipelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1fabbae8..4318d4cb 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -70,7 +70,11 @@ stages: artifact: sonic-buildimage.vs runVersion: 'latestFromBranch' runBranch: 'refs/heads/master' - displayName: "Download sonic buildimage" + patterns: | + target/debs/bullseye/libyang-*.deb + target/debs/bullseye/libnl-*.deb + target/debs/bullseye/libhiredis-*.deb + displayName: "Download bullseye debs" - task: DownloadPipelineArtifact@2 inputs: From e37ab1c82f60c909537f5185bc7ff591ebf03aa5 Mon Sep 17 00:00:00 2001 From: Zain Budhwani Date: Thu, 20 Jul 2023 03:06:52 +0000 Subject: [PATCH 2/2] Fix deb regex --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4318d4cb..89731ad2 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -71,9 +71,9 @@ stages: runVersion: 'latestFromBranch' runBranch: 'refs/heads/master' patterns: | - target/debs/bullseye/libyang-*.deb - target/debs/bullseye/libnl-*.deb - target/debs/bullseye/libhiredis-*.deb + target/debs/bullseye/libyang*.deb + target/debs/bullseye/libnl*.deb + target/debs/bullseye/libhiredis*.deb displayName: "Download bullseye debs" - task: DownloadPipelineArtifact@2