f2b6c18f2a
* adding coveralls * adding code coverage badge * fixing badges * verbose * swap tests and coverage * extra line * maybe * maybe * moar * gover maybe * testing * cleanup
90 lines
2.0 KiB
Makefile
90 lines
2.0 KiB
Makefile
.PHONY: test lint proto check-copyrights build-dev-deps
|
|
|
|
TAG := $$(git rev-parse --short HEAD)
|
|
GO_VERSION := 1.10
|
|
|
|
lint: check-copyrights
|
|
@echo "Running ${@}"
|
|
@gometalinter \
|
|
--deadline=170s \
|
|
--disable-all \
|
|
--vendor .\
|
|
--enable=golint \
|
|
--enable=goimports \
|
|
--enable=vet \
|
|
--enable=deadcode \
|
|
--enable=goconst \
|
|
--exclude=.*\.pb\.go \
|
|
--exclude=.*_test.go \
|
|
--exclude=./vendor/* \
|
|
./...
|
|
|
|
check-copyrights:
|
|
@echo "Running ${@}"
|
|
@./scripts/check-for-header.sh
|
|
|
|
# Applies goimports to every go file (excluding vendored files)
|
|
goimports-fix:
|
|
goimports -w $$(find . -type f -name '*.go' -not -path "*/vendor/*")
|
|
|
|
proto:
|
|
@echo "Running ${@}"
|
|
./scripts/build-protos.sh
|
|
|
|
build-dev-deps:
|
|
go get github.com/golang/protobuf/protoc-gen-go
|
|
go get github.com/mattn/goveralls
|
|
go get golang.org/x/tools/cmd/cover
|
|
go get github.com/modocache/gover
|
|
go get github.com/alecthomas/gometalinter
|
|
gometalinter --install --force
|
|
|
|
test: lint
|
|
go install -v ./...
|
|
go test -v -covermode=count -coverprofile=coverage.out ./...
|
|
gover
|
|
@echo done
|
|
|
|
build-binaries:
|
|
docker build -t overlay .
|
|
|
|
run-overlay:
|
|
docker network create test-net
|
|
|
|
docker run -d \
|
|
--name redis \
|
|
--network test-net \
|
|
-p 127.0.0.1:6379:6379 \
|
|
redis
|
|
|
|
docker run -d \
|
|
--name=overlay \
|
|
--network test-net \
|
|
-p 127.0.0.1:8080:8080 \
|
|
-e REDIS_ADDRESS=redis:6379 \
|
|
-e REDIS_PASSWORD="" \
|
|
-e REDIS_DB=1 \
|
|
-e OVERLAY_PORT=7070 \
|
|
overlay
|
|
|
|
clean-local:
|
|
# cleanup overlay
|
|
docker stop overlay || true
|
|
docker rm overlay || true
|
|
# cleanup redis
|
|
docker stop redis || true
|
|
docker rm redis || true
|
|
# cleanup docker network
|
|
docker network rm test-net || true
|
|
|
|
images:
|
|
docker build --build-arg VERSION=${GO_VERSION} -t storjlabs/overlay:${TAG}-${GO_VERSION} -f cmd/overlay/Dockerfile .
|
|
docker tag storjlabs/overlay:${TAG}-${GO_VERSION} overlay:latest
|
|
|
|
push-images:
|
|
docker push storjlabs/overlay:${TAG}-${GO_VERSION}
|
|
docker push storjlabs/overlay:latest
|
|
|
|
install-deps:
|
|
go get -u -v golang.org/x/vgo
|
|
cd vgo install ./...
|