Update azure-pipelines.yml for Azure Pipelines

This commit is contained in:
Jared Jacobson 2021-09-13 11:38:25 +10:00
parent 1160178c60
commit 22fdb575fd

View file

@ -11,9 +11,15 @@ pool:
steps: steps:
- task: GoTool@0 - task: Bash@3
inputs: inputs:
version: '1.10' targetType: 'inline'
script: |
echo 'Download v.1.14'
wget https://dl.google.com/go/go1.17.1.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.17.1.linux-amd64.tar.gz
export PATH=$PATH:/usr/local/go/bin
echo go version
- task: Bash@3 - task: Bash@3
displayName: 'Build the executables' displayName: 'Build the executables'