mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +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
6b5979cd76
commit
a175a57084
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -257,7 +257,7 @@ benchmark-pure:
|
||||||
vendor-update:
|
vendor-update:
|
||||||
GO111MODULE=on go get -u -d ./lib/...
|
GO111MODULE=on go get -u -d ./lib/...
|
||||||
GO111MODULE=on go get -u -d ./app/...
|
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
|
GO111MODULE=on go mod vendor
|
||||||
|
|
||||||
app-local:
|
app-local:
|
||||||
|
|
Loading…
Reference in a new issue