1
0
mirror of https://github.com/MontFerret/ferret.git synced 2025-01-24 03:49:29 +02:00
ferret/Makefile

69 lines
1.7 KiB
Makefile
Raw Normal View History

.PHONY: build install compile test e2e doc fmt lint vet release
2018-09-18 16:42:38 -04:00
export GOPATH
export GO111MODULE=on
2018-09-18 16:42:38 -04:00
VERSION ?= $(shell git describe --tags --always --dirty)
2018-10-25 18:15:00 -04:00
RELEASE_VERSION ?= $(version)
2018-09-18 16:42:38 -04:00
DIR_BIN = ./bin
DIR_PKG = ./pkg
2018-10-04 22:13:52 -04:00
DIR_CLI = ./cli
2018-10-14 15:38:14 -04:00
DIR_E2E = ./e2e
2018-09-18 16:42:38 -04:00
default: build
build: vet generate test compile
2018-09-18 16:42:38 -04:00
install:
go get
2018-09-25 21:49:42 -04:00
compile:
go build -race -v -o ${DIR_BIN}/ferret \
2018-10-13 22:00:29 -04:00
-ldflags "-X main.version=${VERSION}" \
2018-10-04 22:13:52 -04:00
./main.go
2018-09-18 16:42:38 -04:00
test:
go test -race ${DIR_PKG}/...
cover:
2018-11-05 11:36:55 -05:00
go test -race -coverprofile=coverage.txt -covermode=atomic ${DIR_PKG}/... && \
2018-10-25 22:13:41 -04:00
curl -s https://codecov.io/bash | bash
2018-09-18 16:42:38 -04:00
2018-10-14 15:38:14 -04:00
e2e:
lab --timeout=120 --times=5 --concurrency=1 --wait=http://127.0.0.1:9222/json/version --runtime=bin://./bin/ferret --files=file://./e2e/tests --cdn=./e2e/pages/dynamic:8080@dynamic --cdn=./e2e/pages/static:8081@static
2018-10-14 15:38:14 -04:00
2018-10-24 19:40:57 -04:00
bench:
go test -run=XXX -bench=. ${DIR_PKG}/...
2018-09-18 16:42:38 -04:00
generate:
2018-09-27 17:03:49 -04:00
go generate ${DIR_PKG}/...
2018-09-18 16:42:38 -04:00
doc:
godoc -http=:6060 -index
# http://golang.org/cmd/go/#hdr-Run_gofmt_on_package_sources
fmt:
2018-10-04 22:13:52 -04:00
go fmt ${DIR_CLI}/... ${DIR_PKG}/...
2018-09-18 16:42:38 -04:00
2018-10-05 18:59:42 -04:00
# https://github.com/mgechev/revive
# go get github.com/mgechev/revive
2018-09-18 16:42:38 -04:00
lint:
revive -config revive.toml -formatter stylish -exclude ./pkg/parser/fql/... -exclude ./vendor/... ./...
2018-09-18 16:42:38 -04: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-05 18:59:42 -04:00
go vet ${DIR_CLI}/... ${DIR_PKG}/...
2018-10-13 21:30:50 -04:00
release:
2018-10-25 18:15:00 -04:00
ifeq ($(RELEASE_VERSION), )
2018-10-25 19:55:23 -04:00
$(error "Release version is required (version=x)")
2018-10-25 18:27:34 -04:00
else ifeq ($(GITHUB_TOKEN), )
2018-10-25 19:55:23 -04:00
$(error "GitHub token is required (GITHUB_TOKEN)")
2018-10-25 18:15:00 -04:00
else
2018-10-25 18:15:46 -04:00
rm -rf ./dist && \
2018-10-25 18:15:00 -04:00
git tag -a v$(RELEASE_VERSION) -m "New $(RELEASE_VERSION) version" && \
git push origin v$(RELEASE_VERSION) && \
goreleaser
endif