Skip to content
This repository was archived by the owner on Aug 23, 2023. It is now read-only.

Commit ffae89c

Browse files
fkaleoreplay
authored andcommitted
Switched to Golang 1.13.1
1 parent 20ba219 commit ffae89c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
build:
44
working_directory: /go/src/github.com/grafana/metrictank
55
docker:
6-
- image: circleci/golang:1.11.4
6+
- image: circleci/golang:1.13.1
77
steps:
88
- checkout
99
- run: scripts/build.sh
@@ -21,15 +21,15 @@ jobs:
2121
test:
2222
working_directory: /go/src/github.com/grafana/metrictank
2323
docker:
24-
- image: circleci/golang:1.11.4
24+
- image: circleci/golang:1.13.1
2525
steps:
2626
- checkout
2727
- run: go test -v -race $(go list ./... | grep -v github.com/grafana/metrictank/stacktest)
2828

2929
qa:
3030
working_directory: /go/src/github.com/grafana/metrictank
3131
docker:
32-
- image: circleci/golang:1.11.4
32+
- image: circleci/golang:1.13.1
3333
steps:
3434
- checkout
3535
- run: scripts/qa/gofmt.sh

scripts/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.11.4-alpine AS gobase
1+
FROM golang:1.13.1-alpine AS gobase
22
RUN apk add --no-cache git bash
33

44
# Compile metrictank

scripts/dlv/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.11.4-alpine AS gobase
1+
FROM golang:1.13.1-alpine AS gobase
22
RUN apk add --no-cache git bash
33

44
# Compile metrictank

0 commit comments

Comments
 (0)