You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#GOPATH := $(CURDIR)/tmp/gopath
|
|
|
|
|
|
|
|
all: test install
|
|
|
|
|
|
|
|
test:
|
|
|
|
mkdir -p cover
|
|
|
|
godep go test -race -coverprofile=cover/cover.out github.com/minios/minios
|
|
|
|
godep go test -race github.com/minios/minios/minio
|
|
|
|
|
|
|
|
install:
|
|
|
|
godep go install -race github.com/minios/minios/minio
|
|
|
|
|
|
|
|
save:
|
|
|
|
godep save ./...
|
|
|
|
|
|
|
|
restore:
|
|
|
|
godep restore
|
|
|
|
|
|
|
|
env:
|
|
|
|
godep go env
|
|
|
|
|
|
|
|
run: all
|
|
|
|
minio gateway
|
|
|
|
|
|
|
|
cover: test
|
|
|
|
go tool cover -html=cover/cover.out
|