Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
liushilongbuaa committed Nov 22, 2021
1 parent af340ae commit e15a44c
Showing 1 changed file with 0 additions and 130 deletions.
130 changes: 0 additions & 130 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,133 +87,3 @@ jobs:
codeCoverageTool: 'Cobertura'


- job:
displayName: "arm64"
timeoutInMinutes: 180
pool: sonicbld-arm64

container:
image: sonicdev-microsoft.azurecr.io:443/sonic-slave-buster-arm64:latest

steps:
- script: |
sudo apt-get install -y \
libboost1.71-dev \
libboost-program-options1.71-dev \
libboost-system1.71-dev \
libboost-thread1.71-dev \
libboost-atomic1.71-dev \
libboost-chrono1.71-dev \
libboost-container1.71-dev \
libboost-context1.71-dev \
libboost-contract1.71-dev \
libboost-coroutine1.71-dev \
libboost-date-time1.71-dev \
libboost-fiber1.71-dev \
libboost-filesystem1.71-dev \
libboost-graph-parallel1.71-dev \
libboost-log1.71-dev \
libboost-regex1.71-dev \
googletest \
libgtest-dev \
libgcc-8-dev \
libhiredis0.14 \
libhiredis-dev \
libnl-3-dev \
libnl-route-3-dev \
libnl-genl-3-200 \
libnl-nf-3-200
displayName: "Install dependencies"
- checkout: self
clean: true
submodules: true
- task: DownloadPipelineArtifact@2
inputs:
source: specific
project: build
pipeline: 9
artifact: sonic-swss-common.arm64
runVersion: 'latestFromBranch'
runBranch: 'refs/heads/master'
path: '$(Build.SourcesDirectory)/sonic-swss-common.arm64'
displayName: "Download sonic swss common 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
displayName: "Install sonic swss common"
- script: |
rm ../*.deb
dpkg-buildpackage -us -uc -b -j$(nproc)
cp ../*.deb $(Build.ArtifactStagingDirectory)
displayName: "Compile sonic linkmgrd"
- publish: $(Build.ArtifactStagingDirectory)
artifact: sonic-linkmgrd.arm64
displayName: "Archive linkmgrd debian packages"


- job:
displayName: "armhf"
timeoutInMinutes: 180
pool: sonicbld-armhf

container:
image: sonicdev-microsoft.azurecr.io:443/sonic-slave-buster-armhf:latest

steps:
- script: |
sudo apt-get install -y \
libboost1.71-dev \
libboost-program-options1.71-dev \
libboost-system1.71-dev \
libboost-thread1.71-dev \
libboost-atomic1.71-dev \
libboost-chrono1.71-dev \
libboost-container1.71-dev \
libboost-context1.71-dev \
libboost-contract1.71-dev \
libboost-coroutine1.71-dev \
libboost-date-time1.71-dev \
libboost-fiber1.71-dev \
libboost-filesystem1.71-dev \
libboost-graph-parallel1.71-dev \
libboost-log1.71-dev \
libboost-regex1.71-dev \
googletest \
libgtest-dev \
libgcc-8-dev \
libhiredis0.14 \
libhiredis-dev \
libnl-3-dev \
libnl-route-3-dev \
libnl-genl-3-200 \
libnl-nf-3-200
displayName: "Install dependencies"
- checkout: self
clean: true
submodules: true
- task: DownloadPipelineArtifact@2
inputs:
source: specific
project: build
pipeline: 9
artifact: sonic-swss-common.armhf
runVersion: 'latestFromBranch'
runBranch: 'refs/heads/master'
path: '$(Build.SourcesDirectory)/sonic-swss-common.armhf'
displayName: "Download sonic swss common 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
displayName: "Install sonic swss common"
- script: |
rm ../*.deb
dpkg-buildpackage -us -uc -b -j$(nproc)
cp ../*.deb $(Build.ArtifactStagingDirectory)
displayName: "Compile sonic linkmgrd"
- publish: $(Build.ArtifactStagingDirectory)
artifact: sonic-linkmgrd.armhf
displayName: "Archive linkmgrd debian packages"


0 comments on commit e15a44c

Please sign in to comment.