mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
feat: optimize go version auto set (#2182)
This commit is contained in:
parent
4f40022105
commit
cca5336a8a
@ -17,7 +17,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
GO := go
|
GO := go
|
||||||
GO_SUPPORTED_VERSIONS ?= 1.19|1.20|1.21|1.22|1.23
|
GO_MINIMUM_VERSION ?= 1.19
|
||||||
|
|
||||||
GO_LDFLAGS += -X $(VERSION_PACKAGE).gitVersion=$(GIT_TAG) \
|
GO_LDFLAGS += -X $(VERSION_PACKAGE).gitVersion=$(GIT_TAG) \
|
||||||
-X $(VERSION_PACKAGE).gitCommit=$(GIT_COMMIT) \
|
-X $(VERSION_PACKAGE).gitCommit=$(GIT_COMMIT) \
|
||||||
@ -132,8 +132,8 @@ go.versionchecker:
|
|||||||
## go.build.verify: Verify that a suitable version of Go exists
|
## go.build.verify: Verify that a suitable version of Go exists
|
||||||
.PHONY: go.build.verify
|
.PHONY: go.build.verify
|
||||||
go.build.verify:
|
go.build.verify:
|
||||||
ifneq ($(shell $(GO) version | grep -q -E '\bgo($(GO_SUPPORTED_VERSIONS))\b' && echo 0 || echo 1), 0)
|
ifneq ($(shell $(GO) version|awk -v min=$(GO_MINIMUM_VERSION) '{gsub(/go/,"",$$3);if($$3 >= min){print 0}else{print 1}}'), 0)
|
||||||
$(error unsupported go version. Please make install one of the following supported version: '$(GO_SUPPORTED_VERSIONS)')
|
$(error unsupported go version. Please install a go version which is greater than or equal to '$(GO_MINIMUM_VERSION)')
|
||||||
endif
|
endif
|
||||||
|
|
||||||
## go.build.%: Build binaries for a specific platform
|
## go.build.%: Build binaries for a specific platform
|
||||||
|
Loading…
x
Reference in New Issue
Block a user