From 5bb4d46d6b8da5ea49a1ce2f08945487d4d16467 Mon Sep 17 00:00:00 2001 From: Jacob LeGrone Date: Fri, 29 Nov 2019 14:53:33 -0500 Subject: [PATCH] Upgrade to go 1.13 Signed-off-by: Jacob LeGrone --- azure-pipelines.yml | 3 +-- brigade.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 410d5197..82569049 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,7 +3,7 @@ pool: variables: GOBIN: '$(GOPATH)/bin' # Go binaries path - GOROOT: '/usr/local/go1.11' # Go installation path + GOROOT: '/usr/local/go1.13' # Go installation path GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path modulePath: '$(GOPATH)/src/github.com/$(build.repository.name)' # Path to the module's code @@ -20,7 +20,6 @@ steps: - script: | go version - go get -v -t -d ./... make bootstrap build test lint coverage workingDirectory: '$(modulePath)' displayName: 'Get dependencies, build, test' diff --git a/brigade.js b/brigade.js index f8359812..143a5312 100644 --- a/brigade.js +++ b/brigade.js @@ -3,7 +3,7 @@ const { events, Job } = require("brigadier"); const projectOrg = "cnabio"; const projectName = "cnab-go"; -const goImg = "golang:1.11"; +const goImg = "golang:1.13"; const gopath = "/go"; const localPath = gopath + `/src/github.com/${projectOrg}/${projectName}`;