1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-14 11:23:02 +02:00
ferret/Makefile

70 lines
1.5 KiB
Makefile
Raw Normal View History

2018-10-14 21:38:14 +02:00
.PHONY: build compile install test e2e doc fmt lint vet release
2018-09-18 22:42:38 +02:00
export GOPATH
VERSION ?= $(shell git describe --tags --always --dirty)
2018-10-26 00:15:00 +02:00
RELEASE_VERSION ?= $(version)
2018-09-18 22:42:38 +02:00
DIR_BIN = ./bin
DIR_PKG = ./pkg
2018-10-05 04:13:52 +02:00
DIR_CLI = ./cli
2018-10-14 21:38:14 +02:00
DIR_E2E = ./e2e
2018-09-18 22:42:38 +02:00
default: build
build: install vet generate test compile
2018-09-26 03:49:42 +02:00
compile:
2018-09-18 22:42:38 +02:00
go build -v -o ${DIR_BIN}/ferret \
2018-10-14 04:00:29 +02:00
-ldflags "-X main.version=${VERSION}" \
2018-10-05 04:13:52 +02:00
./main.go
2018-09-18 22:42:38 +02:00
install:
dep ensure
test:
2018-10-25 01:40:57 +02:00
go test -v -race ${DIR_PKG}/...
cover:
2018-10-26 01:55:23 +02:00
ifneq ($(CODECOV_TOKEN), )
go test -race -coverprofile=coverage.txt -covermode=atomic ${DIR_PKG}/...
2018-10-26 01:55:23 +02:00
else
$(error "CODECOV_TOKEN token is required")
endif
2018-09-18 22:42:38 +02:00
2018-10-14 21:38:14 +02:00
e2e:
go run ${DIR_E2E}/main.go --tests ${DIR_E2E}/tests --pages ${DIR_E2E}/pages
2018-10-25 01:40:57 +02:00
bench:
go test -run=XXX -bench=. ${DIR_PKG}/...
2018-09-18 22:42:38 +02:00
generate:
2018-09-27 23:03:49 +02:00
go generate ${DIR_PKG}/...
2018-09-18 22:42:38 +02:00
doc:
godoc -http=:6060 -index
# http://golang.org/cmd/go/#hdr-Run_gofmt_on_package_sources
fmt:
2018-10-05 04:13:52 +02:00
go fmt ${DIR_CLI}/... ${DIR_PKG}/...
2018-09-18 22:42:38 +02:00
2018-10-06 00:59:42 +02:00
# https://github.com/mgechev/revive
# go get github.com/mgechev/revive
2018-09-18 22:42:38 +02:00
lint:
2018-10-06 02:56:15 +02:00
revive -config revive.toml -formatter friendly -exclude ./pkg/parser/fql/... -exclude ./vendor/... ./...
2018-09-18 22:42:38 +02:00
# http://godoc.org/code.google.com/p/go.tools/cmd/vet
# go get code.google.com/p/go.tools/cmd/vet
vet:
2018-10-06 00:59:42 +02:00
go vet ${DIR_CLI}/... ${DIR_PKG}/...
2018-10-14 03:30:50 +02:00
release:
2018-10-26 00:15:00 +02:00
ifeq ($(RELEASE_VERSION), )
2018-10-26 01:55:23 +02:00
$(error "Release version is required (version=x)")
2018-10-26 00:27:34 +02:00
else ifeq ($(GITHUB_TOKEN), )
2018-10-26 01:55:23 +02:00
$(error "GitHub token is required (GITHUB_TOKEN)")
2018-10-26 00:15:00 +02:00
else
2018-10-26 00:15:46 +02:00
rm -rf ./dist && \
2018-10-26 00:15:00 +02:00
git tag -a v$(RELEASE_VERSION) -m "New $(RELEASE_VERSION) version" && \
git push origin v$(RELEASE_VERSION) && \
goreleaser
endif