Skip to content

Commit

Permalink
CLOUDP-60787: Unify go versions (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
gssbzn authored Apr 15, 2020
1 parent 9142601 commit 8510fd3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ platform:

steps:
- name: dependencies
image: golang:1.13
image: golang:1.14
commands:
- curl -sL https://deb.nodesource.com/setup_12.x | bash -
- apt-get install -y nodejs
Expand All @@ -25,20 +25,20 @@ steps:
- push

- name: test
image: golang:1.13
image: golang:1.14
commands:
- make test
volumes:
- name: deps
path: /go

- name: lint
image: golangci/golangci-lint:v1.23.6
image: golangci/golangci-lint:v1.24.0
commands:
- make lint

- name: e2e
image: golang:1.13
image: golang:1.14
commands:
- make e2e-test
environment:
Expand Down
1 change: 1 addition & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
golang 1.14
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Ideally, you should install it somewhere in your PATH for easy use. `/usr/local/

#### Prerequisite Tools
- [Git](https://git-scm.com/)
- [Go (at least Go 1.13)](https://golang.org/dl/)
- [Go (at least Go 1.14)](https://golang.org/dl/)

#### Fetch and Install

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mongodb/mongocli

go 1.13
go 1.14

require (
github.com/AlecAivazis/survey/v2 v2.0.5
Expand Down

0 comments on commit 8510fd3

Please sign in to comment.