From 4b3b23819edf0370bbe4548535e3a5edad118b65 Mon Sep 17 00:00:00 2001 From: Hua Liu <58683130+liuh-80@users.noreply.github.com> Date: Wed, 21 Sep 2022 09:44:28 +0800 Subject: [PATCH] Install libyang to azure pipeline (#292) #### Why I did it sonic-swss-common lib will add dependency to libyang soon, so need install libyang lib to prevent build and UT break. #### How I did it Modify azure pipeline to install libyang in azure pipeline steps. #### How to verify it Pass all UT. #### Which release branch to backport (provide reason below if selected) #### Description for the changelog Modify azure pipeline to install libyang in azure pipeline steps. #### Link to config_db schema for YANG module changes #### A picture of a cute animal (not mandatory but encouraged) --- azure-pipelines.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c98cf77dfe37..2139502c7530 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -92,6 +92,7 @@ jobs: sudo dpkg -i libnl-route-3-200_*.deb sudo dpkg -i libnl-nf-3-200_*.deb sudo dpkg -i libhiredis0.14_*.deb + sudo dpkg -i libyang_1.0.73_amd64.deb sudo dpkg -i libswsscommon_1.0.0_amd64.deb sudo dpkg -i python-swsscommon_1.0.0_amd64.deb sudo dpkg -i python3-swsscommon_1.0.0_amd64.deb