63 lines
1.4 KiB
Makefile
63 lines
1.4 KiB
Makefile
# Use bash syntax
|
|
SHELL=/bin/bash
|
|
# Go parameters
|
|
GOCMD=go
|
|
GOBINPATH=$(shell $(GOCMD) env GOPATH)/bin
|
|
GOMOD=$(GOCMD) mod
|
|
GOBUILD=$(GOCMD) build
|
|
GOCLEAN=$(GOCMD) clean
|
|
GOTEST=gotestsum
|
|
GOGET=$(GOCMD) get
|
|
GOINSTALL=$(GOCMD) install
|
|
GOTOOL=$(GOCMD) tool
|
|
GOFMT=$(GOCMD) fmt
|
|
GIT_TAG=$(shell git describe --abbrev=0 --tags)
|
|
GIT_COMMIT=$(shell git rev-parse --short HEAD)
|
|
|
|
.PHONY: FORCE
|
|
|
|
.PHONY: all
|
|
all: fmt lint test build go.mod
|
|
|
|
.PHONY: build
|
|
build:
|
|
go generate ./...
|
|
go build -v -ldflags="-s -w -X 'github.com/sundowndev/covermyass/v2/build.version=${GIT_TAG}' -X 'github.com/sundowndev/covermyass/v2/build.commit=${GIT_COMMIT}'" -o ./bin/covermyass .
|
|
|
|
.PHONY: test
|
|
test:
|
|
$(GOTEST) --format testname --junitfile unit-tests.xml -- -mod=readonly -race -coverprofile=./c.out -covermode=atomic -coverpkg=.,./... ./...
|
|
|
|
.PHONY: coverage
|
|
coverage: test
|
|
$(GOTOOL) cover -func=c.out
|
|
|
|
.PHONY: mocks
|
|
mocks:
|
|
rm -rf mocks
|
|
mockery --all
|
|
|
|
.PHONY: fmt
|
|
fmt:
|
|
$(GOFMT) ./...
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(GOCLEAN)
|
|
rm -f bin/*
|
|
|
|
.PHONY: lint
|
|
lint:
|
|
@which golangci-lint > /dev/null 2>&1 || (curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | bash -s -- -b $(GOBINPATH) v1.50.1)
|
|
golangci-lint run -v --timeout=10m
|
|
|
|
.PHONY: install-tools
|
|
install-tools:
|
|
$(GOINSTALL) gotest.tools/gotestsum@v1.6.3
|
|
$(GOINSTALL) github.com/vektra/mockery/v2@v2.16.0
|
|
|
|
go.mod: FORCE
|
|
$(GOMOD) tidy
|
|
$(GOMOD) verify
|
|
go.sum: go.mod
|