mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 19:22:03 +00:00
* Fix(makefile): update kustomize version to be available for darwin-arm64 Signed-off-by: Carmendelope <carmen@napptive.com> * make reviewable changes Signed-off-by: Carmendelope <carmen@napptive.com>
87 lines
2.0 KiB
Makefile
87 lines
2.0 KiB
Makefile
|
|
GOLANGCILINT_VERSION ?= v1.38.0
|
|
|
|
.PHONY: golangci
|
|
golangci:
|
|
ifneq ($(shell which golangci-lint),)
|
|
@$(OK) golangci-lint is already installed
|
|
GOLANGCILINT=$(shell which golangci-lint)
|
|
else ifeq (, $(shell which $(GOBIN)/golangci-lint))
|
|
@{ \
|
|
set -e ;\
|
|
echo 'installing golangci-lint-$(GOLANGCILINT_VERSION)' ;\
|
|
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOBIN) $(GOLANGCILINT_VERSION) ;\
|
|
echo 'Successfully installed' ;\
|
|
}
|
|
GOLANGCILINT=$(GOBIN)/golangci-lint
|
|
else
|
|
@$(OK) golangci-lint is already installed
|
|
GOLANGCILINT=$(GOBIN)/golangci-lint
|
|
endif
|
|
|
|
.PHONY: staticchecktool
|
|
staticchecktool:
|
|
ifeq (, $(shell which staticcheck))
|
|
@{ \
|
|
set -e ;\
|
|
echo 'installing honnef.co/go/tools/cmd/staticcheck ' ;\
|
|
GO111MODULE=on go get honnef.co/go/tools/cmd/staticcheck@v0.3.0 ;\
|
|
}
|
|
STATICCHECK=$(GOBIN)/staticcheck
|
|
else
|
|
STATICCHECK=$(shell which staticcheck)
|
|
endif
|
|
|
|
.PHONY: goimports
|
|
goimports:
|
|
ifeq (, $(shell which goimports))
|
|
@{ \
|
|
set -e ;\
|
|
go install golang.org/x/tools/cmd/goimports@latest ;\
|
|
}
|
|
GOIMPORTS=$(GOBIN)/goimports
|
|
else
|
|
GOIMPORTS=$(shell which goimports)
|
|
endif
|
|
|
|
.PHONY: installcue
|
|
installcue:
|
|
ifeq (, $(shell which cue))
|
|
@{ \
|
|
set -e ;\
|
|
go install cuelang.org/go/cmd/cue@latest ;\
|
|
}
|
|
CUE=$(GOBIN)/cue
|
|
else
|
|
CUE=$(shell which cue)
|
|
endif
|
|
|
|
KUSTOMIZE_VERSION ?= 4.5.4
|
|
|
|
.PHONY: kustomize
|
|
kustomize:
|
|
ifeq (, $(shell kustomize version | grep $(KUSTOMIZE_VERSION)))
|
|
@{ \
|
|
set -eo pipefail ;\
|
|
echo 'installing kustomize-v$(KUSTOMIZE_VERSION) into $(GOBIN)' ;\
|
|
curl -sS https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh | bash -s $(KUSTOMIZE_VERSION) $(GOBIN);\
|
|
echo 'Install succeed' ;\
|
|
}
|
|
KUSTOMIZE=$(GOBIN)/kustomize
|
|
else
|
|
KUSTOMIZE=$(shell which kustomize)
|
|
endif
|
|
|
|
.PHONY: helmdoc
|
|
helmdoc:
|
|
ifeq (, $(shell which readme-generator))
|
|
@{ \
|
|
set -e ;\
|
|
echo 'installing readme-generator-for-helm' ;\
|
|
npm install -g readme-generator-for-helm ;\
|
|
}
|
|
else
|
|
@$(OK) readme-generator-for-helm is already installed
|
|
HELMDOC=$(shell which readme-generator)
|
|
endif
|