Skip to content

Commit

Permalink
Upgrade to go 1.13
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob LeGrone <[email protected]>
  • Loading branch information
jlegrone committed Dec 6, 2019
1 parent be17670 commit 5bb4d46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion brigade.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;

Expand Down

0 comments on commit 5bb4d46

Please sign in to comment.