Update mac cache version number in circle-ci to avoid conflicts (#8982)
* Have mac use 1.16.1 * minor version not necessary Co-authored-by: Bas <3441183+BattleBas@users.noreply.github.com>
This commit is contained in:
parent
5085f595ac
commit
97da596275
|
|
@ -93,14 +93,14 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: mac-go-mod-v2-{{ checksum "go.sum" }}
|
key: mac-go-mod-v3-{{ checksum "go.sum" }}
|
||||||
- run: 'brew update'
|
- run: 'brew update'
|
||||||
- run: 'brew install go@1.16'
|
- run: 'brew install go@1.16'
|
||||||
- run: 'make deps'
|
- run: 'make deps'
|
||||||
- run: 'make tidy'
|
- run: 'make tidy'
|
||||||
- save_cache:
|
- save_cache:
|
||||||
name: 'go module cache'
|
name: 'go module cache'
|
||||||
key: mac-go-mod-v2-{{ checksum "go.sum" }}
|
key: mac-go-mod-v3-{{ checksum "go.sum" }}
|
||||||
paths:
|
paths:
|
||||||
- '~/go/pkg/mod'
|
- '~/go/pkg/mod'
|
||||||
- '/usr/local/Cellar/go'
|
- '/usr/local/Cellar/go'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue