Skip to content

Commit 0e66ba1

Browse files
fix
1 parent 475c182 commit 0e66ba1

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

azure-pipelines.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ stages:
5151
vmImage: ubuntu-22.04
5252

5353
variables:
54-
GO_VERSION: '1.19.8'
54+
GO_VERSION: '1.26.1'
5555

5656
steps:
5757
- checkout: self
@@ -185,6 +185,13 @@ stages:
185185
submodules: recursive
186186
displayName: 'Checkout sonic-swss-common'
187187

188+
- script: |
189+
wget https://go.dev/dl/go$(GO_VERSION).linux-amd64.tar.gz
190+
sudo tar -C /usr/local -xzf go$(GO_VERSION).linux-amd64.tar.gz
191+
export PATH=$PATH:/usr/local/go/bin
192+
go version
193+
displayName: 'Install Go'
194+
188195
# Integration tests have been separated from pure package tests
189196
# Pure package CI now runs in the separate PureCIJob above
190197
# The steps below are for integration testing with SONiC dependencies

0 commit comments

Comments
 (0)