Skip to content

Commit 3cf877e

Browse files
vdarulisrobskillington
authored andcommitted
Revert "Bump go to 1.14 (#2853)" (#2885)
We'll upgrade Go runtime immediately after 1.0 release, we're still waiting on a few more end users to sign off on performance under Go 1.14 (we'll likely move directly to evaluating performance under Go 1.15 with end users instead).
1 parent ba6a303 commit 3cf877e

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.buildkite/pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ steps:
1414
command: make clean install-vendor-m3 test-all-gen
1515
env:
1616
CGO_ENABLED: 0
17-
GIMME_GO_VERSION: 1.14.x
17+
GIMME_GO_VERSION: 1.13.x
1818
plugins:
1919
gopath-checkout#v1.0.1:
2020
import: github.com/m3db/m3
@@ -56,7 +56,7 @@ steps:
5656
parallelism: 2
5757
env:
5858
CGO_ENABLED: 0
59-
GIMME_GO_VERSION: 1.14.x
59+
GIMME_GO_VERSION: 1.13.x
6060
plugins:
6161
gopath-checkout#v1.0.1:
6262
import: github.com/m3db/m3
@@ -66,7 +66,7 @@ steps:
6666
parallelism: 1
6767
env:
6868
CGO_ENABLED: 0
69-
GIMME_GO_VERSION: 1.14.x
69+
GIMME_GO_VERSION: 1.13.x
7070
plugins:
7171
gopath-checkout#v1.0.1:
7272
import: github.com/m3db/m3
@@ -99,7 +99,7 @@ steps:
9999
command: make clean install-vendor-m3 docs-test
100100
env:
101101
CGO_ENABLED: 0
102-
GIMME_GO_VERSION: 1.14.x
102+
GIMME_GO_VERSION: 1.13.x
103103
plugins:
104104
gopath-checkout#v1.0.1:
105105
import: github.com/m3db/m3

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ GO_BUILD_LDFLAGS_CMD := $(abspath ./scripts/go-build-ldflags.sh)
3838
GO_BUILD_LDFLAGS := $(shell $(GO_BUILD_LDFLAGS_CMD) LDFLAG)
3939
GO_BUILD_COMMON_ENV := CGO_ENABLED=0
4040
LINUX_AMD64_ENV := GOOS=linux GOARCH=amd64 $(GO_BUILD_COMMON_ENV)
41-
# GO_RELEASER_DOCKER_IMAGE is latest goreleaser for go 1.14
42-
GO_RELEASER_DOCKER_IMAGE := goreleaser/goreleaser:v0.141.0
41+
# GO_RELEASER_DOCKER_IMAGE is latest goreleaser for go 1.13
42+
GO_RELEASER_DOCKER_IMAGE := goreleaser/goreleaser:v0.127.0
4343
GO_RELEASER_RELEASE_ARGS ?= --rm-dist
4444
GO_RELEASER_WORKING_DIR := /go/src/github.com/m3db/m3
4545

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
app:
2-
image: golang:1.14-stretch
2+
image: golang:1.13-stretch
33
volumes:
44
- .:/go/src/github.com/m3db/m3
55
- /usr/bin/buildkite-agent:/usr/bin/buildkite-agent

docker/m3aggregator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: build
2-
FROM golang:1.14-alpine3.11 AS builder
2+
FROM golang:1.13-alpine3.11 AS builder
33
LABEL maintainer="The M3DB Authors <[email protected]>"
44

55
# Install deps

docker/m3collector/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: build
2-
FROM golang:1.14-alpine3.11 AS builder
2+
FROM golang:1.13-alpine3.11 AS builder
33
LABEL maintainer="The M3DB Authors <[email protected]>"
44

55
# Install deps

docker/m3coordinator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: build
2-
FROM golang:1.14-alpine3.11 AS builder
2+
FROM golang:1.13-alpine3.11 AS builder
33
LABEL maintainer="The M3DB Authors <[email protected]>"
44

55
# Install deps

docker/m3dbnode/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: build
2-
FROM golang:1.14-alpine3.11 AS builder
2+
FROM golang:1.13-alpine3.11 AS builder
33
LABEL maintainer="The M3DB Authors <[email protected]>"
44

55
# Install deps

docker/m3dbnode/Dockerfile-setcap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: build
2-
FROM golang:1.14-alpine3.11 AS builder
2+
FROM golang:1.13-alpine3.11 AS builder
33
LABEL maintainer="The M3DB Authors <[email protected]>"
44

55
# Install deps

docker/m3query/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# stage 1: build
2-
FROM golang:1.14-alpine3.11 AS builder
2+
FROM golang:1.13-alpine3.11 AS builder
33
LABEL maintainer="The M3DB Authors <[email protected]>"
44

55
# Install deps

0 commit comments

Comments
 (0)