mirror of
https://gitee.com/johng/gf.git
synced 2024-11-30 03:07:45 +08:00
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
SHELL := /bin/bash
|
|
|
|
.PHONY: tidy
|
|
tidy:
|
|
$(eval files=$(shell find . -name go.mod))
|
|
@set -e; \
|
|
for file in ${files}; do \
|
|
goModPath=$$(dirname $$file); \
|
|
cd $$goModPath; \
|
|
go mod tidy; \
|
|
cd -; \
|
|
done
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
golangci-lint run
|
|
|
|
# make version to=v2.4.0
|
|
version:
|
|
$(eval files=$(shell find . -name go.mod))
|
|
@set -e; \
|
|
newVersion=$(to); \
|
|
echo "The version will be set to $$newVersion"; \
|
|
if [[ $$newVersion =~ "v" ]]; then \
|
|
latestVersion=$$newVersion; \
|
|
echo "package gf" > version.go; \
|
|
echo "" >> version.go; \
|
|
echo "const (" >> version.go; \
|
|
echo -e "\t// VERSION is the current GoFrame version." >> version.go; \
|
|
echo -e "\tVERSION = \"$$latestVersion\"" >> version.go; \
|
|
echo ")" >> version.go; \
|
|
else \
|
|
latestVersion=latest; \
|
|
fi; \
|
|
for file in ${files}; do \
|
|
goModPath=$$(dirname $$file); \
|
|
if [[ $$goModPath =~ "./contrib" || $$goModPath =~ "./cmd/gf" || $$goModPath =~ "./example" ]]; then \
|
|
echo ""; \
|
|
echo "processing dir: $$goModPath"; \
|
|
# Do not modify the order of any of the following sentences \
|
|
cd $$goModPath; \
|
|
go mod tidy; \
|
|
go list -f "{{if and (not .Indirect) (not .Main)}}{{.Path}}@$$latestVersion{{end}}" -m all | grep "^github.com/gogf/gf/contrib" | xargs -L1 go get -v; \
|
|
go get -v github.com/gogf/gf/v2@$$latestVersion; \
|
|
go mod tidy; \
|
|
cd -; \
|
|
fi \
|
|
done
|