From 22fdb575fdaf50db575973a2372572847bf0c794 Mon Sep 17 00:00:00 2001 From: Jared Jacobson <71237599+jaredjn@users.noreply.github.com> Date: Mon, 13 Sep 2021 11:38:25 +1000 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8b5f591a9..e50695f31 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -11,9 +11,15 @@ pool: steps: -- task: GoTool@0 +- task: Bash@3 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 displayName: 'Build the executables'