GOCMD=go GOTEST=$(GOCMD) test GOVET=$(GOCMD) vet BINARY_NAME=nutanixclient EXPORT_RESULT?=false # for CI please set EXPORT_RESULT to true GREEN := $(shell tput -Txterm setaf 2) YELLOW := $(shell tput -Txterm setaf 3) WHITE := $(shell tput -Txterm setaf 7) CYAN := $(shell tput -Txterm setaf 6) RESET := $(shell tput -Txterm sgr0) .PHONY: all test build vendor all: help ## Build: build: vendor ## Build your project and put the output binary in bin/ mkdir -p bin GO111MODULE=on $(GOCMD) build -mod vendor -o bin/$(BINARY_NAME) . clean: ## Remove build related file rm -fr ./bin vendor rm -f ./junit-report.xml checkstyle-report.xml ./coverage.xml ./profile.cov yamllint-checkstyle.xml vendor: ## Copy of all packages needed to support builds and tests in the vendor directory $(GOCMD) mod vendor ## Test: test: ## Run the tests of the project ifeq ($(EXPORT_RESULT), true) GO111MODULE=off go get -u github.com/jstemmer/go-junit-report $(eval OUTPUT_OPTIONS = | tee /dev/tty | go-junit-report -set-exit-code > junit-report.xml) endif $(GOTEST) -v -race ./... $(OUTPUT_OPTIONS) coverage: ## Run the tests of the project and export the coverage $(GOTEST) -cover -covermode=count -coverprofile=profile.cov ./... $(GOCMD) tool cover -func profile.cov ifeq ($(EXPORT_RESULT), true) GO111MODULE=off go get -u github.com/AlekSi/gocov-xml GO111MODULE=off go get -u github.com/axw/gocov/gocov gocov convert profile.cov | gocov-xml > coverage.xml endif ## Lint: lint: lint-go lint-yaml ## Run all available linters lint-go: ## Use golintci-lint on your project $(eval OUTPUT_OPTIONS = $(shell [ "${EXPORT_RESULT}" == "true" ] && echo "--out-format checkstyle ./... | tee /dev/tty > checkstyle-report.xml" || echo "" )) docker run --rm -v $(shell pwd):/app -w /app golangci/golangci-lint:latest-alpine golangci-lint run --enable gofmt --fix --enable gofumpt --deadline=65s $(OUTPUT_OPTIONS) lint-yaml: ## Use yamllint on the yaml file of your projects ifeq ($(EXPORT_RESULT), true) GO111MODULE=off go get -u github.com/thomaspoignant/yamllint-checkstyle $(eval OUTPUT_OPTIONS = | tee /dev/tty | yamllint-checkstyle > yamllint-checkstyle.xml) endif docker run --rm -it -v $(shell pwd):/data cytopia/yamllint -d relaxed -f parsable $(shell git ls-files '*.yml' '*.yaml') $(OUTPUT_OPTIONS) ## Help: help: ## Show this help. @echo '' @echo 'Usage:' @echo ' ${YELLOW}make${RESET} ${GREEN}${RESET}' @echo '' @echo 'Targets:' @awk 'BEGIN {FS = ":.*?## "} { \ if (/^[a-zA-Z_-]+:.*?##.*$$/) {printf " ${YELLOW}%-20s${GREEN}%s${RESET}\n", $$1, $$2} \ else if (/^## .*$$/) {printf " ${CYAN}%s${RESET}\n", substr($$1,4)} \ }' $(MAKEFILE_LIST)