From de55902e3e4543c221a0bc59b35755cbe748132c Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Wed, 27 Sep 2023 11:17:58 -0700 Subject: [PATCH] Remove command to install libhiredis deb file (#151) ### Why I did it libhiredis is now used as-is from the slave container, since we're not making any changes to this package. See also sonic-net/sonic-buildimage#15633. --- azure-pipelines.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c3226c50..7e1ee43b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -82,7 +82,6 @@ stages: patterns: | target/debs/bullseye/libyang*.deb target/debs/bullseye/libnl*.deb - target/debs/bullseye/libhiredis*.deb displayName: "Download bullseye debs" - script: | @@ -103,13 +102,11 @@ stages: - script: | # LIBSWSSCOMMON - sudo apt-get -y purge libhiredis-dev libnl-3-dev libnl-route-3-dev + sudo apt-get -y purge libnl-3-dev libnl-route-3-dev sudo dpkg -i ../target/debs/bullseye/libnl-3-200_*.deb sudo dpkg -i ../target/debs/bullseye/libnl-genl-3-200_*.deb sudo dpkg -i ../target/debs/bullseye/libnl-route-3-200_*.deb sudo dpkg -i ../target/debs/bullseye/libnl-nf-3-200_*.deb - sudo dpkg -i ../target/debs/bullseye/libhiredis0.14_*.deb - sudo dpkg -i ../target/debs/bullseye/libhiredis-dev_*.deb displayName: "Install libswsscommon dependencies" - script: |