2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
SHELL := /bin/bash
|
|
|
|
CURRENT_PATH = $(shell pwd)
|
|
|
|
APP_NAME = bitxhub
|
2020-03-31 14:00:16 +08:00
|
|
|
APP_VERSION = 1.0.0-rc1
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
# build with verison infos
|
|
|
|
VERSION_DIR = github.com/meshplus/${APP_NAME}
|
|
|
|
BUILD_DATE = $(shell date +%FT%T)
|
|
|
|
GIT_COMMIT = $(shell git log --pretty=format:'%h' -n 1)
|
|
|
|
GIT_BRANCH = $(shell git rev-parse --abbrev-ref HEAD)
|
|
|
|
|
2020-04-26 22:20:52 +08:00
|
|
|
GOLDFLAGS += -X "${VERSION_DIR}.BuildDate=${BUILD_DATE}"
|
|
|
|
GOLDFLAGS += -X "${VERSION_DIR}.CurrentCommit=${GIT_COMMIT}"
|
|
|
|
GOLDFLAGS += -X "${VERSION_DIR}.CurrentBranch=${GIT_BRANCH}"
|
|
|
|
GOLDFLAGS += -X "${VERSION_DIR}.CurrentVersion=${APP_VERSION}"
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
GO = GO111MODULE=on go
|
2020-10-13 11:16:45 +08:00
|
|
|
TEST_PKGS := $(shell $(GO) list ./... | grep -v 'mock_*' | grep -v 'tester' | grep -v 'proto' | grep -v 'cmd')
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
RED=\033[0;31m
|
|
|
|
GREEN=\033[0;32m
|
|
|
|
BLUE=\033[0;34m
|
|
|
|
NC=\033[0m
|
|
|
|
|
|
|
|
help: Makefile
|
|
|
|
@printf "${BLUE}Choose a command run:${NC}\n"
|
|
|
|
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /'
|
|
|
|
|
|
|
|
## make prepare: Preparation before development
|
|
|
|
prepare:
|
2020-04-01 02:06:24 +08:00
|
|
|
@cd scripts && bash prepare.sh
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
## make test: Run go unittest
|
|
|
|
test:
|
|
|
|
go generate ./...
|
2020-03-30 18:46:49 +08:00
|
|
|
@$(GO) test ${TEST_PKGS} -count=1
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
## make test-coverage: Test project with cover
|
|
|
|
test-coverage:
|
2020-04-01 02:06:24 +08:00
|
|
|
go generate ./...
|
|
|
|
@go test -short -coverprofile cover.out -covermode=atomic ${TEST_PKGS}
|
|
|
|
@cat cover.out >> coverage.txt
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
## make tester: Run integration test
|
|
|
|
tester:
|
|
|
|
cd tester && $(GO) test -v -run TestTester
|
|
|
|
|
|
|
|
## make install: Go install the project
|
|
|
|
install:
|
|
|
|
cd internal/repo && packr
|
2020-10-16 14:58:26 +08:00
|
|
|
$(GO) install -tags '${TAGS}' -ldflags '${GOLDFLAGS}' ./cmd/${APP_NAME}
|
2020-03-29 21:32:01 +08:00
|
|
|
@printf "${GREEN}Build bitxhub successfully!${NC}\n"
|
|
|
|
|
2020-03-30 12:59:22 +08:00
|
|
|
build:
|
|
|
|
cd internal/repo && packr
|
|
|
|
@mkdir -p bin
|
2020-10-16 14:58:26 +08:00
|
|
|
$(GO) build -tags '${TAGS}' -ldflags '${GOLDFLAGS}' ./cmd/${APP_NAME}
|
2020-03-30 12:59:22 +08:00
|
|
|
@mv ./bitxhub bin
|
|
|
|
@printf "${GREEN}Build bitxhub successfully!${NC}\n"
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
## make linter: Run golanci-lint
|
|
|
|
linter:
|
2020-03-31 14:00:16 +08:00
|
|
|
golangci-lint run
|
2020-03-29 21:32:01 +08:00
|
|
|
|
|
|
|
## make cluster: Run cluster including 4 nodes
|
2020-10-16 14:58:26 +08:00
|
|
|
cluster:install
|
2020-03-30 12:59:22 +08:00
|
|
|
@cd scripts && bash cluster.sh
|
2020-03-29 21:32:01 +08:00
|
|
|
|
2020-06-09 16:52:00 +08:00
|
|
|
.PHONY: tester build
|