a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
18 lignes
410 o
Makefile
18 lignes
410 o
Makefile
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
|
COMMIT=`git rev-parse --short HEAD`
|
|
GOLDFLAGS="-X main.branch $(BRANCH) -X main.commit $(COMMIT)"
|
|
|
|
default: build
|
|
|
|
race:
|
|
@go test -v -race -test.run="TestSimulate_(100op|1000op)"
|
|
|
|
# go get github.com/kisielk/errcheck
|
|
errcheck:
|
|
@errcheck -ignorepkg=bytes -ignore=os:Remove github.com/boltdb/bolt
|
|
|
|
test:
|
|
@go test -v -cover .
|
|
@go test -v ./cmd/bolt
|
|
|
|
.PHONY: fmt test
|