Skip to content

Commit

Permalink
Use Go 1.13.8 to build official packages (influxdata#7079)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnelson authored and idohalevi committed Sep 23, 2020
1 parent e2104ed commit 4ce93a6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ defaults:
GOFLAGS: -p=8
go-1_12: &go-1_12
docker:
- image: 'quay.io/influxdb/telegraf-ci:1.12.14'
- image: 'quay.io/influxdb/telegraf-ci:1.12.17'
environment:
GO111MODULE: 'on'
go-1_13: &go-1_13
docker:
- image: 'quay.io/influxdb/telegraf-ci:1.13.5'
- image: 'quay.io/influxdb/telegraf-ci:1.13.8'
mac: &mac
macos:
xcode: 11.3.1
working_directory: '~/go/src/github.com/influxdata/telegraf'
environment:
HOMEBREW_NO_AUTO_UPDATE: 1
GOFLAGS: -p=8

version: 2
jobs:
deps:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- run: 'make'
- run: 'make check'
- run: 'make test'

package:
<<: [ *defaults, *go-1_13 ]
steps:
Expand Down
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,10 @@ plugin-%:

.PHONY: ci-1.13
ci-1.13:
docker build -t quay.io/influxdb/telegraf-ci:1.13.5 - < scripts/ci-1.13.docker
docker push quay.io/influxdb/telegraf-ci:1.13.5
docker build -t quay.io/influxdb/telegraf-ci:1.13.8 - < scripts/ci-1.13.docker
docker push quay.io/influxdb/telegraf-ci:1.13.8

.PHONY: ci-1.12
ci-1.12:
docker build -t quay.io/influxdb/telegraf-ci:1.12.14 - < scripts/ci-1.12.docker
docker push quay.io/influxdb/telegraf-ci:1.12.14
docker build -t quay.io/influxdb/telegraf-ci:1.12.17 - < scripts/ci-1.12.docker
docker push quay.io/influxdb/telegraf-ci:1.12.17
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cache:
clone_folder: C:\gopath\src\github.com\influxdata\telegraf

environment:
GOVERSION: 1.13.5
GOVERSION: 1.13.8
GOPATH: C:\gopath

platform: x64
Expand Down
2 changes: 1 addition & 1 deletion scripts/ci-1.12.docker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.12.14
FROM golang:1.12.17

RUN chmod -R 755 "$GOPATH"

Expand Down
2 changes: 1 addition & 1 deletion scripts/ci-1.13.docker
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13.5
FROM golang:1.13.8

RUN chmod -R 755 "$GOPATH"

Expand Down

0 comments on commit 4ce93a6

Please sign in to comment.