mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-10 15:14:09 +00:00
Makefile: explicitly specify go1.17 compatibility when running go mod tidy
at make vendor-update
This is needed because go1.17 is the minimum supported version of Go, which is needed for building VictoriaMetrics
This commit is contained in:
parent
4ca5d97459
commit
d49dbec662
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -134,7 +134,7 @@ benchmark-pure:
|
|||
vendor-update:
|
||||
GO111MODULE=on go get -u -d ./lib/...
|
||||
GO111MODULE=on go get -u -d ./app/...
|
||||
GO111MODULE=on go mod tidy
|
||||
GO111MODULE=on go mod tidy -compat=1.17
|
||||
GO111MODULE=on go mod vendor
|
||||
|
||||
app-local:
|
||||
|
|
Loading…
Reference in a new issue