2016-12-08 04:01:10 +00:00
|
|
|
.PHONY: all gorush test build fmt vet errcheck lint install update release-dirs release-build release-copy release-check release
|
2016-03-27 12:20:57 +00:00
|
|
|
|
2016-12-07 08:40:00 +00:00
|
|
|
DIST := dist
|
|
|
|
EXECUTABLE := gorush
|
|
|
|
|
|
|
|
DEPLOY_ACCOUNT := appleboy
|
|
|
|
DEPLOY_IMAGE := $(EXECUTABLE)
|
2017-04-01 14:30:46 +00:00
|
|
|
GOFMT ?= gofmt "-s"
|
2016-12-07 08:40:00 +00:00
|
|
|
|
2016-12-13 14:17:21 +00:00
|
|
|
TARGETS ?= linux darwin windows
|
2017-01-02 05:58:07 +00:00
|
|
|
ARCHS ?= amd64 386
|
2016-12-07 08:40:00 +00:00
|
|
|
PACKAGES ?= $(shell go list ./... | grep -v /vendor/)
|
2017-06-05 02:26:45 +00:00
|
|
|
GOFILES := $(shell find . -name "*.go" -type f -not -path "./vendor/*")
|
2016-12-07 08:40:00 +00:00
|
|
|
SOURCES ?= $(shell find . -name "*.go" -type f)
|
|
|
|
TAGS ?=
|
2017-01-17 02:44:33 +00:00
|
|
|
LDFLAGS ?= -X 'main.Version=$(VERSION)'
|
2017-06-01 07:52:01 +00:00
|
|
|
TMPDIR := $(shell mktemp -d 2>/dev/null || mktemp -d -t 'tempdir')
|
2017-07-25 14:50:00 +00:00
|
|
|
NODE_PROTOC_PLUGIN := $(shell which grpc_tools_node_protoc_plugin)
|
2016-12-07 08:40:00 +00:00
|
|
|
|
2016-08-15 12:43:34 +00:00
|
|
|
ifneq ($(shell uname), Darwin)
|
|
|
|
EXTLDFLAGS = -extldflags "-static" $(null)
|
|
|
|
else
|
|
|
|
EXTLDFLAGS =
|
|
|
|
endif
|
|
|
|
|
2016-12-07 08:40:00 +00:00
|
|
|
ifneq ($(DRONE_TAG),)
|
|
|
|
VERSION ?= $(DRONE_TAG)
|
|
|
|
else
|
2016-12-09 17:15:45 +00:00
|
|
|
VERSION ?= $(shell git describe --tags --always || git rev-parse --short HEAD)
|
2016-12-07 08:40:00 +00:00
|
|
|
endif
|
|
|
|
|
2016-03-27 12:20:57 +00:00
|
|
|
all: build
|
|
|
|
|
2016-05-22 03:17:40 +00:00
|
|
|
init:
|
|
|
|
ifeq ($(ANDROID_API_KEY),)
|
|
|
|
@echo "Missing ANDROID_API_KEY Parameter"
|
|
|
|
@exit 1
|
|
|
|
endif
|
|
|
|
ifeq ($(ANDROID_TEST_TOKEN),)
|
|
|
|
@echo "Missing ANDROID_TEST_TOKEN Parameter"
|
|
|
|
@exit 1
|
|
|
|
endif
|
|
|
|
@echo "Already set ANDROID_API_KEY and ANDROID_TEST_TOKEN globale variable."
|
|
|
|
|
2016-12-07 08:40:00 +00:00
|
|
|
fmt:
|
2017-06-05 02:26:45 +00:00
|
|
|
$(GOFMT) -w $(GOFILES)
|
2016-12-07 08:40:00 +00:00
|
|
|
|
2017-03-30 06:29:53 +00:00
|
|
|
.PHONY: fmt-check
|
|
|
|
fmt-check:
|
2017-04-01 14:30:46 +00:00
|
|
|
# get all go files and run go fmt on them
|
2017-06-05 02:26:45 +00:00
|
|
|
@diff=$$($(GOFMT) -d $(GOFILES)); \
|
|
|
|
if [ -n "$$diff" ]; then \
|
2017-04-01 14:30:46 +00:00
|
|
|
echo "Please run 'make fmt' and commit the result:"; \
|
2017-06-05 02:26:45 +00:00
|
|
|
echo "$${diff}"; \
|
2017-04-01 14:30:46 +00:00
|
|
|
exit 1; \
|
2017-06-05 02:26:45 +00:00
|
|
|
fi;
|
2017-03-30 06:29:53 +00:00
|
|
|
|
2016-12-07 08:40:00 +00:00
|
|
|
vet:
|
|
|
|
go vet $(PACKAGES)
|
|
|
|
|
2017-02-25 12:31:49 +00:00
|
|
|
deps:
|
|
|
|
go get github.com/campoy/embedmd
|
|
|
|
|
|
|
|
embedmd:
|
|
|
|
embedmd -d *.md
|
|
|
|
|
2016-12-07 08:40:00 +00:00
|
|
|
errcheck:
|
2017-03-09 07:23:56 +00:00
|
|
|
@hash errcheck > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
2016-12-07 08:40:00 +00:00
|
|
|
go get -u github.com/kisielk/errcheck; \
|
|
|
|
fi
|
|
|
|
errcheck $(PACKAGES)
|
|
|
|
|
|
|
|
lint:
|
2017-03-09 07:23:56 +00:00
|
|
|
@hash golint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
2016-12-07 08:40:00 +00:00
|
|
|
go get -u github.com/golang/lint/golint; \
|
|
|
|
fi
|
|
|
|
for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;
|
|
|
|
|
2017-01-28 03:25:54 +00:00
|
|
|
unconvert:
|
2017-03-09 07:23:56 +00:00
|
|
|
@hash unconvert > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
2017-01-28 03:25:54 +00:00
|
|
|
go get -u github.com/mdempsky/unconvert; \
|
|
|
|
fi
|
|
|
|
for PKG in $(PACKAGES); do unconvert -v $$PKG || exit 1; done;
|
|
|
|
|
2016-12-09 17:15:45 +00:00
|
|
|
install: $(SOURCES)
|
2016-12-07 08:40:00 +00:00
|
|
|
go install -v -tags '$(TAGS)' -ldflags '$(EXTLDFLAGS)-s -w $(LDFLAGS)'
|
|
|
|
|
|
|
|
build: $(EXECUTABLE)
|
2016-07-30 14:05:38 +00:00
|
|
|
|
2016-12-07 08:40:00 +00:00
|
|
|
$(EXECUTABLE): $(SOURCES)
|
|
|
|
go build -v -tags '$(TAGS)' -ldflags '$(EXTLDFLAGS)-s -w $(LDFLAGS)' -o bin/$@
|
2016-08-15 12:43:34 +00:00
|
|
|
|
2017-06-05 02:45:38 +00:00
|
|
|
.PHONY: misspell-check
|
2017-06-05 02:42:07 +00:00
|
|
|
misspell-check:
|
|
|
|
@hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
|
|
|
go get -u github.com/client9/misspell/cmd/misspell; \
|
|
|
|
fi
|
2017-06-05 02:49:53 +00:00
|
|
|
misspell -error $(GOFILES)
|
2017-06-05 02:42:07 +00:00
|
|
|
|
2017-06-05 03:50:00 +00:00
|
|
|
.PHONY: misspell
|
|
|
|
misspell:
|
|
|
|
@hash misspell > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
|
|
|
go get -u github.com/client9/misspell/cmd/misspell; \
|
|
|
|
fi
|
|
|
|
misspell -w $(GOFILES)
|
|
|
|
|
2017-03-30 06:29:53 +00:00
|
|
|
test: fmt-check
|
2016-12-07 08:40:00 +00:00
|
|
|
for PKG in $(PACKAGES); do go test -v -cover -coverprofile $$GOPATH/src/$$PKG/coverage.txt $$PKG || exit 1; done;
|
2016-05-03 01:42:53 +00:00
|
|
|
|
2017-06-01 07:52:01 +00:00
|
|
|
.PHONY: test-vendor
|
|
|
|
test-vendor:
|
|
|
|
@hash govendor > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
|
|
|
go get -u github.com/kardianos/govendor; \
|
|
|
|
fi
|
|
|
|
govendor list +unused | tee "$(TMPDIR)/wc-gitea-unused"
|
|
|
|
[ $$(cat "$(TMPDIR)/wc-gitea-unused" | wc -l) -eq 0 ] || echo "Warning: /!\\ Some vendor are not used /!\\"
|
|
|
|
|
|
|
|
govendor list +outside | tee "$(TMPDIR)/wc-gitea-outside"
|
|
|
|
[ $$(cat "$(TMPDIR)/wc-gitea-outside" | wc -l) -eq 0 ] || exit 1
|
|
|
|
|
|
|
|
govendor status || exit 1
|
|
|
|
|
2016-05-22 03:17:40 +00:00
|
|
|
redis_test: init
|
2016-07-20 07:50:28 +00:00
|
|
|
go test -v -cover ./storage/redis/...
|
2016-05-03 01:42:53 +00:00
|
|
|
|
2016-05-22 03:17:40 +00:00
|
|
|
boltdb_test: init
|
2016-07-20 07:50:28 +00:00
|
|
|
go test -v -cover ./storage/boltdb/...
|
2016-05-04 01:29:36 +00:00
|
|
|
|
2016-05-22 03:17:40 +00:00
|
|
|
memory_test: init
|
2016-07-20 07:50:28 +00:00
|
|
|
go test -v -cover ./storage/memory/...
|
2016-05-04 01:29:36 +00:00
|
|
|
|
2016-08-02 07:35:28 +00:00
|
|
|
buntdb_test: init
|
|
|
|
go test -v -cover ./storage/buntdb/...
|
|
|
|
|
2016-09-19 08:19:20 +00:00
|
|
|
leveldb_test: init
|
|
|
|
go test -v -cover ./storage/leveldb/...
|
|
|
|
|
2016-05-22 03:17:40 +00:00
|
|
|
config_test: init
|
2016-07-20 07:50:28 +00:00
|
|
|
go test -v -cover ./config/...
|
2016-05-03 01:42:53 +00:00
|
|
|
|
2016-05-04 01:29:36 +00:00
|
|
|
html:
|
2016-07-20 07:50:28 +00:00
|
|
|
go tool cover -html=.cover/coverage.txt
|
2016-04-11 06:10:46 +00:00
|
|
|
|
2016-12-08 03:43:23 +00:00
|
|
|
release: release-dirs release-build release-copy release-check
|
|
|
|
|
|
|
|
release-dirs:
|
|
|
|
mkdir -p $(DIST)/binaries $(DIST)/release
|
|
|
|
|
|
|
|
release-build:
|
2017-02-27 13:45:00 +00:00
|
|
|
@hash gox > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
2016-12-08 03:43:23 +00:00
|
|
|
go get -u github.com/mitchellh/gox; \
|
|
|
|
fi
|
2017-01-02 05:58:07 +00:00
|
|
|
gox -os="$(TARGETS)" -arch="$(ARCHS)" -tags="$(TAGS)" -ldflags="$(EXTLDFLAGS)-s -w $(LDFLAGS)" -output="$(DIST)/binaries/$(EXECUTABLE)-$(VERSION)-{{.OS}}-{{.Arch}}"
|
2016-12-08 03:43:23 +00:00
|
|
|
|
|
|
|
release-copy:
|
|
|
|
$(foreach file,$(wildcard $(DIST)/binaries/$(EXECUTABLE)-*),cp $(file) $(DIST)/release/$(notdir $(file));)
|
|
|
|
|
|
|
|
release-check:
|
|
|
|
cd $(DIST)/release; $(foreach file,$(wildcard $(DIST)/release/$(EXECUTABLE)-*),sha256sum $(notdir $(file)) > $(notdir $(file)).sha256;)
|
|
|
|
|
2016-12-08 04:01:10 +00:00
|
|
|
docker_build:
|
|
|
|
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags '$(TAGS)' -ldflags "$(EXTLDFLAGS)-s -w $(LDFLAGS)" -o bin/$(EXECUTABLE)
|
2016-12-07 08:40:00 +00:00
|
|
|
|
|
|
|
docker_image:
|
|
|
|
docker build -t $(DEPLOY_ACCOUNT)/$(DEPLOY_IMAGE) -f Dockerfile .
|
|
|
|
|
2017-05-15 15:29:49 +00:00
|
|
|
docker_release: docker_image
|
2016-05-22 14:28:57 +00:00
|
|
|
|
2016-10-01 08:11:23 +00:00
|
|
|
docker_deploy:
|
2016-04-11 09:18:53 +00:00
|
|
|
ifeq ($(tag),)
|
|
|
|
@echo "Usage: make $@ tag=<tag>"
|
|
|
|
@exit 1
|
|
|
|
endif
|
2016-12-08 04:01:10 +00:00
|
|
|
docker tag $(DEPLOY_ACCOUNT)/$(EXECUTABLE):latest $(DEPLOY_ACCOUNT)/$(EXECUTABLE):$(tag)
|
2016-12-07 08:40:00 +00:00
|
|
|
docker push $(DEPLOY_ACCOUNT)/$(EXECUTABLE):$(tag)
|
2016-04-11 09:18:53 +00:00
|
|
|
|
2016-03-27 12:20:57 +00:00
|
|
|
clean:
|
2016-12-07 08:40:00 +00:00
|
|
|
go clean -x -i ./...
|
|
|
|
find . -name coverage.txt -delete
|
2016-12-08 04:01:10 +00:00
|
|
|
find . -name *.tar.gz -delete
|
|
|
|
find . -name *.db -delete
|
|
|
|
-rm -rf bin/* \
|
2016-07-20 07:50:28 +00:00
|
|
|
.cover
|
2016-11-20 01:54:16 +00:00
|
|
|
|
2017-07-25 14:53:21 +00:00
|
|
|
rpc/example/node/gorush_*_pb.js: rpc/proto/gorush.proto
|
2017-07-25 14:50:00 +00:00
|
|
|
protoc -I rpc/proto rpc/proto/gorush.proto --js_out=import_style=commonjs,binary:rpc/example/node/ --grpc_out=rpc/example/node/ --plugin=protoc-gen-grpc=$(NODE_PROTOC_PLUGIN)
|
|
|
|
|
|
|
|
rpc/proto/gorush.pb.go: rpc/proto/gorush.proto
|
|
|
|
protoc -I rpc/proto rpc/proto/gorush.proto --go_out=plugins=grpc:rpc/proto
|
|
|
|
|
2017-07-25 14:53:21 +00:00
|
|
|
generate_proto: rpc/proto/gorush.pb.go rpc/example/node/gorush_*_pb.js
|
2017-07-25 14:50:00 +00:00
|
|
|
|
2016-11-20 01:54:16 +00:00
|
|
|
version:
|
|
|
|
@echo $(VERSION)
|