-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into evpn_fdb_orchagent
- Loading branch information
Showing
7 changed files
with
441 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
**/* | ||
!*.deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
# C/C++ with GCC | ||
# Build your C/C++ project with GCC using make. | ||
# Add steps that publish test results, save build artifacts, deploy, and more: | ||
# https://docs.microsoft.com/azure/devops/pipelines/apps/c-cpp/gcc | ||
|
||
trigger: | ||
branches: | ||
include: | ||
- "*" | ||
|
||
jobs: | ||
- job: | ||
displayName: "amd64" | ||
pool: | ||
vmImage: 'ubuntu-20.04' | ||
|
||
container: | ||
image: sonicdev-microsoft.azurecr.io:443/sonic-slave-buster:latest | ||
|
||
steps: | ||
- script: | | ||
sudo apt-get install -y libhiredis0.14 libhiredis-dev | ||
sudo apt-get install -y libzmq5 libzmq3-dev | ||
sudo apt-get install -qq -y \ | ||
libhiredis-dev \ | ||
libnl-3-dev \ | ||
libnl-genl-3-dev \ | ||
libnl-route-3-dev \ | ||
libnl-nf-3-dev \ | ||
swig3.0 | ||
sudo apt-get install -y libdbus-1-3 | ||
sudo apt-get install -y libteam-dev \ | ||
libteam5 \ | ||
libteamdctl0 | ||
displayName: "Install dependencies" | ||
- task: DownloadPipelineArtifact@2 | ||
inputs: | ||
source: specific | ||
project: build | ||
pipeline: 9 | ||
artifacts: sonic-swss-common | ||
displayName: "Download sonic swss common deb packages" | ||
- task: DownloadPipelineArtifact@2 | ||
inputs: | ||
source: specific | ||
project: build | ||
pipeline: 12 | ||
artifacts: sonic-sairedis | ||
displayName: "Download sonic sairedis deb packages" | ||
- script: | | ||
sudo dpkg -i sonic-swss-common/libswsscommon_1.0.0_amd64.deb | ||
sudo dpkg -i sonic-swss-common/libswsscommon-dev_1.0.0_amd64.deb | ||
sudo dpkg -i sonic-sairedis/libsaivs_*.deb | ||
sudo dpkg -i sonic-sairedis/libsaivs-dev_*.deb | ||
sudo dpkg -i sonic-sairedis/libsairedis_*.deb | ||
sudo dpkg -i sonic-sairedis/libsairedis-dev_*.deb | ||
sudo dpkg -i sonic-sairedis/libsaimetadata_*.deb | ||
sudo dpkg -i sonic-sairedis/libsaimetadata-dev_*.deb | ||
sudo dpkg -i sonic-sairedis/syncd-vs_*.deb | ||
workingDirectory: $(Pipeline.Workspace) | ||
displayName: "Install sonic swss common and sairedis" | ||
- checkout: self | ||
submodules: true | ||
- script: | | ||
./autogen.sh | ||
dpkg-buildpackage -us -uc -b -j$(nproc) | ||
cp ../*.deb . | ||
displayName: "Compile sonic swss" | ||
- publish: $(System.DefaultWorkingDirectory)/ | ||
artifact: sonic-swss | ||
displayName: "Archive swss debian packages" | ||
|
||
- job: | ||
displayName: "arm64" | ||
timeoutInMinutes: 180 | ||
pool: sonic | ||
|
||
container: | ||
image: sonicdev-microsoft.azurecr.io:443/sonic-slave-buster-arm64:latest | ||
|
||
steps: | ||
- script: | | ||
sudo apt-get install -y libhiredis0.14 libhiredis-dev | ||
sudo apt-get install -y libzmq5 libzmq3-dev | ||
sudo apt-get install -qq -y \ | ||
libhiredis-dev \ | ||
libnl-3-dev \ | ||
libnl-genl-3-dev \ | ||
libnl-route-3-dev \ | ||
libnl-nf-3-dev \ | ||
swig3.0 | ||
sudo apt-get install -y libdbus-1-3 | ||
sudo apt-get install -y libteam-dev \ | ||
libteam5 \ | ||
libteamdctl0 | ||
displayName: "Install dependencies" | ||
- task: DownloadPipelineArtifact@2 | ||
inputs: | ||
source: specific | ||
project: build | ||
pipeline: 9 | ||
artifacts: sonic-swss-common.arm64 | ||
displayName: "Download sonic swss common deb packages" | ||
- task: DownloadPipelineArtifact@2 | ||
inputs: | ||
source: specific | ||
project: build | ||
pipeline: 12 | ||
artifacts: sonic-sairedis.arm64 | ||
displayName: "Download sonic sairedis deb packages" | ||
- script: | | ||
sudo dpkg -i sonic-swss-common.arm64/libswsscommon_1.0.0_arm64.deb | ||
sudo dpkg -i sonic-swss-common.arm64/libswsscommon-dev_1.0.0_arm64.deb | ||
sudo dpkg -i sonic-sairedis.arm64/libsaivs_*.deb | ||
sudo dpkg -i sonic-sairedis.arm64/libsaivs-dev_*.deb | ||
sudo dpkg -i sonic-sairedis.arm64/libsairedis_*.deb | ||
sudo dpkg -i sonic-sairedis.arm64/libsairedis-dev_*.deb | ||
sudo dpkg -i sonic-sairedis.arm64/libsaimetadata_*.deb | ||
sudo dpkg -i sonic-sairedis.arm64/libsaimetadata-dev_*.deb | ||
sudo dpkg -i sonic-sairedis.arm64/syncd-vs_*.deb | ||
workingDirectory: $(Pipeline.Workspace) | ||
displayName: "Install sonic swss common and sairedis" | ||
- checkout: self | ||
submodules: true | ||
- script: | | ||
./autogen.sh | ||
dpkg-buildpackage -us -uc -b -j$(nproc) | ||
cp ../*.deb . | ||
displayName: "Compile sonic swss" | ||
- publish: $(System.DefaultWorkingDirectory)/ | ||
artifact: sonic-swss.arm64 | ||
displayName: "Archive swss debian packages" | ||
|
||
- job: | ||
displayName: "armhf" | ||
timeoutInMinutes: 180 | ||
pool: sonic | ||
|
||
container: | ||
image: sonicdev-microsoft.azurecr.io:443/sonic-slave-buster-armhf:latest | ||
|
||
steps: | ||
- script: | | ||
sudo apt-get install -y libhiredis0.14 libhiredis-dev | ||
sudo apt-get install -y libzmq5 libzmq3-dev | ||
sudo apt-get install -qq -y \ | ||
libhiredis-dev \ | ||
libnl-3-dev \ | ||
libnl-genl-3-dev \ | ||
libnl-route-3-dev \ | ||
libnl-nf-3-dev \ | ||
swig3.0 | ||
sudo apt-get install -y libdbus-1-3 | ||
sudo apt-get install -y libteam-dev \ | ||
libteam5 \ | ||
libteamdctl0 | ||
displayName: "Install dependencies" | ||
- task: DownloadPipelineArtifact@2 | ||
inputs: | ||
source: specific | ||
project: build | ||
pipeline: 9 | ||
artifacts: sonic-swss-common.armhf | ||
displayName: "Download sonic swss common deb packages" | ||
- task: DownloadPipelineArtifact@2 | ||
inputs: | ||
source: specific | ||
project: build | ||
pipeline: 12 | ||
artifacts: sonic-sairedis.armhf | ||
displayName: "Download sonic sairedis deb packages" | ||
- script: | | ||
sudo dpkg -i sonic-swss-common.armhf/libswsscommon_1.0.0_armhf.deb | ||
sudo dpkg -i sonic-swss-common.armhf/libswsscommon-dev_1.0.0_armhf.deb | ||
sudo dpkg -i sonic-sairedis.armhf/libsaivs_*.deb | ||
sudo dpkg -i sonic-sairedis.armhf/libsaivs-dev_*.deb | ||
sudo dpkg -i sonic-sairedis.armhf/libsairedis_*.deb | ||
sudo dpkg -i sonic-sairedis.armhf/libsairedis-dev_*.deb | ||
sudo dpkg -i sonic-sairedis.armhf/libsaimetadata_*.deb | ||
sudo dpkg -i sonic-sairedis.armhf/libsaimetadata-dev_*.deb | ||
sudo dpkg -i sonic-sairedis.armhf/syncd-vs_*.deb | ||
workingDirectory: $(Pipeline.Workspace) | ||
displayName: "Install sonic swss common and sairedis" | ||
- checkout: self | ||
submodules: true | ||
- script: | | ||
./autogen.sh | ||
dpkg-buildpackage -us -uc -b -j$(nproc) | ||
cp ../*.deb . | ||
displayName: "Compile sonic swss" | ||
- publish: $(System.DefaultWorkingDirectory)/ | ||
artifact: sonic-swss.armhf | ||
displayName: "Archive swss debian packages" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.