File tree Expand file tree Collapse file tree 3 files changed +15
-8
lines changed
Expand file tree Collapse file tree 3 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 3333 set -ex
3434 sudo apt-get update
3535 sudo apt-get install -y \
36- libboost-system -dev \
37- libboost-thread -dev \
38- libboost-serialization -dev \
36+ libboost-system1.83 -dev \
37+ libboost-thread1.83 -dev \
38+ libboost-serialization1.83 -dev \
3939 googletest \
4040 libgtest-dev \
4141 libgmock-dev \
Original file line number Diff line number Diff line change 4040 - name : prepare
4141 run : |
4242 sudo apt-get update
43- sudo apt-get install -y libboost-system -dev \
44- libboost-thread -dev \
43+ sudo apt-get install -y libboost-system1.83 -dev \
44+ libboost-thread1.83 -dev \
4545 libevent-dev \
4646 libhiredis-dev \
4747 libnl-3-dev \
Original file line number Diff line number Diff line change @@ -8,22 +8,29 @@ trigger:
88 include :
99 - " *"
1010
11+ variables :
12+ - name : BUILD_BRANCH
13+ ${{ if eq(variables['Build.Reason'], 'PullRequest') }} :
14+ value : $(System.PullRequest.TargetBranch)
15+ ${{ else }} :
16+ value : $(Build.SourceBranchName)
17+
1118jobs :
1219- template : .azure-pipelines/build.yml
1320 parameters :
1421 arch : amd64
1522 pool :
1623 vmImage : ' ubuntu-latest'
1724 codeCoverage : true
18- containerImage : sonicdev-microsoft.azurecr.io:443/sonic-slave-bookworm:latest
25+ containerImage : sonicdev-microsoft.azurecr.io:443/sonic-slave-bookworm:$(BUILD_BRANCH)
1926- template : .azure-pipelines/build.yml
2027 parameters :
2128 arch : arm64
2229 pool : sonicso1ES-arm64
23- containerImage : sonicdev-microsoft.azurecr.io:443/sonic-slave-bookworm-arm64:latest
30+ containerImage : sonicdev-microsoft.azurecr.io:443/sonic-slave-bookworm:$(BUILD_BRANCH) -arm64
2431- template : .azure-pipelines/build.yml
2532 parameters :
2633 arch : armhf
2734 pool : sonicso1ES-armhf
28- containerImage : sonicdev-microsoft.azurecr.io:443/sonic-slave-bookworm-armhf:latest
35+ containerImage : sonicdev-microsoft.azurecr.io:443/sonic-slave-bookworm:$(BUILD_BRANCH) -armhf
2936
You can’t perform that action at this time.
0 commit comments