Skip to content

Commit

Permalink
[AzurePipeline] Fix vstest step failed by libyang missing. (#12240)
Browse files Browse the repository at this point in the history
Why I did it
Fix PR merge failed because 'vstest' step does not install libyang.

How I did it
Install libyang in azure pipeline.

How to verify it
Pass vstest step.
  • Loading branch information
liuh-80 authored Sep 30, 2022
1 parent eea8ebd commit 004a8b6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ stages:

- script: |
set -x
sudo apt-get update
sudo apt-get install libyang0.16 -y
sudo dpkg -i --force-confask,confnew ../libswsscommon_1.0.0_amd64.deb
sudo dpkg -i ../python3-swsscommon_1.0.0_amd64.deb
sudo docker load -i ../target/docker-sonic-vs.gz
Expand Down

0 comments on commit 004a8b6

Please sign in to comment.