12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- GOCMD:=$(shell which go)
- GOLINT:=$(shell which golint)
- GOIMPORT:=$(shell which goimports)
- GOFMT:=$(shell which gofmt)
- GOBUILD:=$(GOCMD) build
- GOINSTALL:=$(GOCMD) install
- GOCLEAN:=$(GOCMD) clean
- GOTEST:=$(GOCMD) test
- GOGET:=$(GOCMD) get
- GOLIST:=$(GOCMD) list
- GOVET:=$(GOCMD) vet
- GOPATH:=$(shell $(GOCMD) env GOPATH)
- u := $(if $(update),-u)
- BINARY_NAME:=swag
- PACKAGES:=$(shell $(GOLIST) github.com/swaggo/swag github.com/swaggo/swag/cmd/swag github.com/swaggo/swag/gen github.com/swaggo/swag/format)
- GOFILES:=$(shell find . -name "*.go" -type f)
- export GO111MODULE := on
- all: test build
- .PHONY: build
- build: deps
- $(GOBUILD) -o $(BINARY_NAME) ./cmd/swag
- .PHONY: install
- install: deps
- $(GOINSTALL) ./cmd/swag
- .PHONY: test
- test:
- echo "mode: count" > coverage.out
- for PKG in $(PACKAGES); do \
- $(GOCMD) test -v -covermode=count -coverprofile=profile.out $$PKG > tmp.out; \
- cat tmp.out; \
- if grep -q "^--- FAIL" tmp.out; then \
- rm tmp.out; \
- exit 1; \
- elif grep -q "build failed" tmp.out; then \
- rm tmp.out; \
- exit; \
- fi; \
- if [ -f profile.out ]; then \
- cat profile.out | grep -v "mode:" >> coverage.out; \
- rm profile.out; \
- fi; \
- done
- .PHONY: clean
- clean:
- $(GOCLEAN)
- rm -f $(BINARY_NAME)
- .PHONY: deps
- deps:
- $(GOGET) github.com/swaggo/cli
- $(GOGET) github.com/ghodss/yaml
- $(GOGET) github.com/KyleBanks/depth
- $(GOGET) github.com/go-openapi/jsonreference
- $(GOGET) github.com/go-openapi/spec
- $(GOGET) github.com/stretchr/testify/assert
- $(GOGET) golang.org/x/tools/go/loader
- .PHONY: devel-deps
- devel-deps:
- GO111MODULE=off $(GOGET) -v -u \
- golang.org/x/lint/golint
- .PHONY: lint
- lint: devel-deps
- for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;
- .PHONY: vet
- vet: deps devel-deps
- $(GOVET) $(PACKAGES)
- .PHONY: fmt
- fmt:
- $(GOFMT) -s -w $(GOFILES)
- .PHONY: fmt-check
- fmt-check:
- @diff=$$($(GOFMT) -s -d $(GOFILES)); \
- if [ -n "$$diff" ]; then \
- echo "Please run 'make fmt' and commit the result:"; \
- echo "$${diff}"; \
- exit 1; \
- fi;
- .PHONY: view-covered
- view-covered:
- $(GOTEST) -coverprofile=cover.out $(TARGET)
- $(GOCMD) tool cover -html=cover.out
|