Skip to content
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

Bump go to 1.14 #2853

Merged
merged 3 commits into from
Nov 7, 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 .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ steps:
command: make clean install-vendor-m3 test-all-gen
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.13.x
GIMME_GO_VERSION: 1.14.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
Expand Down Expand Up @@ -56,7 +56,7 @@ steps:
parallelism: 2
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.13.x
GIMME_GO_VERSION: 1.14.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
Expand All @@ -66,7 +66,7 @@ steps:
parallelism: 1
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.13.x
GIMME_GO_VERSION: 1.14.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
Expand Down Expand Up @@ -99,7 +99,7 @@ steps:
command: make clean install-vendor-m3 docs-test
env:
CGO_ENABLED: 0
GIMME_GO_VERSION: 1.13.x
GIMME_GO_VERSION: 1.14.x
plugins:
gopath-checkout#v1.0.1:
import: github.com/m3db/m3
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ GO_BUILD_LDFLAGS_CMD := $(abspath ./scripts/go-build-ldflags.sh)
GO_BUILD_LDFLAGS := $(shell $(GO_BUILD_LDFLAGS_CMD) LDFLAG)
GO_BUILD_COMMON_ENV := CGO_ENABLED=0
LINUX_AMD64_ENV := GOOS=linux GOARCH=amd64 $(GO_BUILD_COMMON_ENV)
# GO_RELEASER_DOCKER_IMAGE is latest goreleaser for go 1.13
GO_RELEASER_DOCKER_IMAGE := goreleaser/goreleaser:v0.127.0
# GO_RELEASER_DOCKER_IMAGE is latest goreleaser for go 1.14
GO_RELEASER_DOCKER_IMAGE := goreleaser/goreleaser:v0.141.0
GO_RELEASER_RELEASE_ARGS ?= --rm-dist
GO_RELEASER_WORKING_DIR := /go/src/github.com/m3db/m3

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
app:
image: golang:1.13-stretch
image: golang:1.14-stretch
volumes:
- .:/go/src/github.com/m3db/m3
- /usr/bin/buildkite-agent:/usr/bin/buildkite-agent
Expand Down
2 changes: 1 addition & 1 deletion docker/m3aggregator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stage 1: build
FROM golang:1.13-alpine3.11 AS builder
FROM golang:1.14-alpine3.11 AS builder
LABEL maintainer="The M3DB Authors <[email protected]>"

# Install deps
Expand Down
2 changes: 1 addition & 1 deletion docker/m3collector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stage 1: build
FROM golang:1.13-alpine3.11 AS builder
FROM golang:1.14-alpine3.11 AS builder
LABEL maintainer="The M3DB Authors <[email protected]>"

# Install deps
Expand Down
2 changes: 1 addition & 1 deletion docker/m3coordinator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stage 1: build
FROM golang:1.13-alpine3.11 AS builder
FROM golang:1.14-alpine3.11 AS builder
LABEL maintainer="The M3DB Authors <[email protected]>"

# Install deps
Expand Down
2 changes: 1 addition & 1 deletion docker/m3dbnode/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stage 1: build
FROM golang:1.13-alpine3.11 AS builder
FROM golang:1.14-alpine3.11 AS builder
LABEL maintainer="The M3DB Authors <[email protected]>"

# Install deps
Expand Down
2 changes: 1 addition & 1 deletion docker/m3dbnode/Dockerfile-setcap
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stage 1: build
FROM golang:1.13-alpine3.11 AS builder
FROM golang:1.14-alpine3.11 AS builder
LABEL maintainer="The M3DB Authors <[email protected]>"

# Install deps
Expand Down
2 changes: 1 addition & 1 deletion docker/m3query/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# stage 1: build
FROM golang:1.13-alpine3.11 AS builder
FROM golang:1.14-alpine3.11 AS builder
LABEL maintainer="The M3DB Authors <[email protected]>"

# Install deps
Expand Down