Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .azure-pipelines/build-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,10 @@ jobs:
- script: |
set -ex
sudo dpkg -i $(find ./download -name *.deb)
# common-lib doesn't publish python3-libyang (LIBYANG3_PY3 isn't in
# slave.mk's lib-packages), so install the CFFI bindings from PyPI;
# they link against the libyang3 we just installed.
Comment thread
bgallagher-nexthop marked this conversation as resolved.
sudo pip3 install --no-build-isolation 'libyang==3.3.0'
Comment thread
bgallagher-nexthop marked this conversation as resolved.
Comment thread
bgallagher-nexthop marked this conversation as resolved.
workingDirectory: $(Build.ArtifactStagingDirectory)
displayName: "Install libyang from common lib"
- task: DownloadPipelineArtifact@2
Expand Down
Loading