Update circleci mac golang version (#8516)

This commit is contained in:
reimda 2020-12-04 16:53:57 -07:00 committed by GitHub
parent f7950be107
commit 73986acc87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ defaults:
- image: 'quay.io/influxdb/telegraf-ci:1.15.5'
mac: &mac
macos:
xcode: 11.3.1
xcode: 12.1.0
working_directory: '~/go/src/github.com/influxdata/telegraf'
environment:
HOMEBREW_NO_AUTO_UPDATE: 1
@ -42,13 +42,13 @@ jobs:
steps:
- checkout
- restore_cache:
key: mac-go-mod-v1-{{ checksum "go.sum" }}
key: mac-go-mod-v2-{{ checksum "go.sum" }}
- run: 'brew install go' # latest
- run: 'make deps'
- run: 'make tidy'
- save_cache:
name: 'go module cache'
key: mac-go-mod-v1-{{ checksum "go.sum" }}
key: mac-go-mod-v2-{{ checksum "go.sum" }}
paths:
- '~/go/pkg/mod'
- '/usr/local/Cellar/go'