Browse Source

[tm-bench] update Makefile

pull/1943/head
Anton Kaliaev 7 years ago
parent
commit
c245768377
No known key found for this signature in database GPG Key ID: 7B6881D965918214
2 changed files with 11 additions and 10 deletions
  1. +1
    -0
      tm-bench/LICENSE
  2. +10
    -10
      tm-bench/Makefile

+ 1
- 0
tm-bench/LICENSE View File

@ -1,3 +1,4 @@
Tendermint Bench
Copyright 2017 Tendermint
Apache License


+ 10
- 10
tm-bench/Makefile View File

@ -1,31 +1,31 @@
DIST_DIRS := find * -type d -exec
VERSION := $(shell perl -ne '/^var version.*"([^"]+)".*$$/ && print "v$$1\n"' main.go)
GOTOOLS = \
github.com/Masterminds/glide \
github.com/mitchellh/gox
tools:
go get -v $(GOTOOLS)
go get $(GOTOOLS)
get_vendor_deps: tools
get_vendor_deps:
@hash glide 2>/dev/null || go get github.com/Masterminds/glide
glide install
build:
go build -ldflags "-X main.version=${VERSION}"
go build
install:
go install -ldflags "-X main.version=${VERSION}"
go install
test:
go test
go test -race
build-all: tools
rm -rf ./dist
gox -verbose \
-ldflags "-X main.version=${VERSION}" \
-ldflags "-s -w" \
-arch="amd64 386" \
-os="linux darwin windows" \
-arch="amd64 386 armv6 arm64" \
-osarch="!darwin/arm64" \
-osarch="!darwin/386" \
-output="dist/{{.OS}}-{{.Arch}}/{{.Dir}}" .
dist: build-all
@ -38,7 +38,7 @@ dist: build-all
build-docker:
rm -f ./tm-bench
docker run -it --rm -v "$(PWD):/go/src/app" -w "/go/src/app" -e "CGO_ENABLED=0" golang:alpine go build -ldflags "-X main.version=${VERSION}" -o tm-bench
docker run -it --rm -v "$(PWD):/go/src/app" -w "/go/src/app" -e "CGO_ENABLED=0" golang:alpine go build -ldflags "-s -w" -o tm-bench
docker build -t "tendermint/bench" .
clean:


Loading…
Cancel
Save