update go versions: 1.14.5, 1.13.13 (#7837)

This commit is contained in:
Steven Soroka 2020-07-14 20:21:02 -04:00 committed by GitHub
parent f9b4138758
commit 9a5fd6588c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 18 additions and 11 deletions

View File

@ -6,10 +6,10 @@ defaults:
GOFLAGS: -p=8
go-1_13: &go-1_13
docker:
- image: 'quay.io/influxdb/telegraf-ci:1.13.12'
- image: 'quay.io/influxdb/telegraf-ci:1.13.13'
go-1_14: &go-1_14
docker:
- image: 'quay.io/influxdb/telegraf-ci:1.14.4'
- image: 'quay.io/influxdb/telegraf-ci:1.14.5'
mac: &mac
macos:
xcode: 11.3.1
@ -176,12 +176,14 @@ workflows:
only: /.*/
- 'package':
requires:
- 'test-go-darwin'
- 'test-go-1.13'
- 'test-go-1.13-386'
- 'test-go-1.14'
- 'test-go-1.14-386'
- 'release':
requires:
- 'test-go-darwin'
- 'test-go-1.13'
- 'test-go-1.13-386'
- 'test-go-1.14'
@ -194,6 +196,7 @@ workflows:
nightly:
jobs:
- 'deps'
- 'macdeps'
- 'test-go-1.13':
requires:
- 'deps'
@ -206,8 +209,12 @@ workflows:
- 'test-go-1.14-386':
requires:
- 'deps'
- 'test-go-darwin':
requires:
- 'macdeps'
- 'nightly':
requires:
- 'test-go-darwin'
- 'test-go-1.13'
- 'test-go-1.13-386'
- 'test-go-1.14'

View File

@ -15,7 +15,7 @@
- Telegraf's `--test` mode now runs processors and aggregators before printing
metrics.
- Official packages now built with Go 1.14.4.
- Official packages now built with Go 1.14.5.
- When updating the Debian package you will no longer be prompted to merge the
telegraf.conf file, instead the new version will be installed to

View File

@ -172,13 +172,13 @@ plugin-%:
.PHONY: ci-1.14
ci-1.14:
docker build -t quay.io/influxdb/telegraf-ci:1.14.3 - < scripts/ci-1.14.docker
docker push quay.io/influxdb/telegraf-ci:1.14.3
docker build -t quay.io/influxdb/telegraf-ci:1.14.5 - < scripts/ci-1.14.docker
docker push quay.io/influxdb/telegraf-ci:1.14.5
.PHONY: ci-1.13
ci-1.13:
docker build -t quay.io/influxdb/telegraf-ci:1.13.11 - < scripts/ci-1.13.docker
docker push quay.io/influxdb/telegraf-ci:1.13.11
docker build -t quay.io/influxdb/telegraf-ci:1.13.13 - < scripts/ci-1.13.docker
docker push quay.io/influxdb/telegraf-ci:1.13.13
.PHONY: install
install: $(buildbin)

View File

@ -1,4 +1,4 @@
FROM golang:1.13.8 as builder
FROM golang:1.13.13 as builder
WORKDIR /go/src/github.com/influxdata/telegraf
COPY . /go/src/github.com/influxdata/telegraf

View File

@ -1,4 +1,4 @@
FROM golang:1.13.12
FROM golang:1.13.13
RUN chmod -R 755 "$GOPATH"

View File

@ -1,4 +1,4 @@
FROM golang:1.14.4
FROM golang:1.14.5
RUN chmod -R 755 "$GOPATH"

View File

@ -1,4 +1,4 @@
FROM golang:1.13.8 as builder
FROM golang:1.13.13 as builder
WORKDIR /go/src/github.com/influxdata/telegraf
COPY . /go/src/github.com/influxdata/telegraf