Skip to content

CLOUDP-60787: Unify go versions #98

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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