We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 475c182 commit 0e66ba1Copy full SHA for 0e66ba1
1 file changed
azure-pipelines.yml
@@ -51,7 +51,7 @@ stages:
51
vmImage: ubuntu-22.04
52
53
variables:
54
- GO_VERSION: '1.19.8'
+ GO_VERSION: '1.26.1'
55
56
steps:
57
- checkout: self
@@ -185,6 +185,13 @@ stages:
185
submodules: recursive
186
displayName: 'Checkout sonic-swss-common'
187
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
+
195
# Integration tests have been separated from pure package tests
196
# Pure package CI now runs in the separate PureCIJob above
197
# The steps below are for integration testing with SONiC dependencies
0 commit comments