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 KUSTOMIZE = $(shell pwd)/bin/kustomize .PHONY: kustomize kustomize: ifeq (, $(shell $(KUSTOMIZE) version | grep $(KUSTOMIZE_VERSION))) @{ \ set -eo pipefail ;\ echo "installing kustomize-v$(KUSTOMIZE_VERSION) into $(shell pwd)/bin" ;\ mkdir -p $(shell pwd)/bin ;\ rm -f $(KUSTOMIZE) ;\ curl -sS https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh | bash -s $(KUSTOMIZE_VERSION) $(shell pwd)/bin;\ echo 'Install succeed' ;\ } 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