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.
58 lines
1.4 KiB
58 lines
1.4 KiB
all: getdeps install
|
|
|
|
checkdeps:
|
|
@echo "Checking deps:"
|
|
@(env bash $(PWD)/buildscripts/checkdeps.sh)
|
|
|
|
checkgopath:
|
|
@echo "Checking if project is at ${GOPATH}"
|
|
@for mcpath in $(echo ${GOPATH} | sed 's/:/\n/g'); do if [ ! -d ${mcpath}/src/github.com/minio/minio ]; then echo "Project not found in ${mcpath}, please follow instructions provided at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi done
|
|
|
|
getdeps: checkdeps checkgopath
|
|
@go get github.com/golang/lint/golint && echo "Installed golint:"
|
|
@go get golang.org/x/tools/cmd/vet && echo "Installed vet:"
|
|
@go get github.com/fzipp/gocyclo && echo "Installed gocyclo:"
|
|
|
|
verifiers: getdeps vet fmt lint cyclo
|
|
|
|
vet:
|
|
@echo "Running $@:"
|
|
@go vet .
|
|
@go vet github.com/minio/minio/pkg...
|
|
fmt:
|
|
@echo "Running $@:"
|
|
@gofmt -s -l *.go
|
|
@gofmt -s -l pkg
|
|
|
|
lint:
|
|
@echo "Running $@:"
|
|
@golint .
|
|
@golint pkg
|
|
|
|
cyclo:
|
|
@echo "Running $@:"
|
|
@gocyclo -over 25 .
|
|
|
|
build: getdeps verifiers
|
|
@echo "Installing minio:"
|
|
@go generate ./...
|
|
@go test -race github.com/minio/minio/pkg...
|
|
|
|
gomake-all: build
|
|
@go install github.com/minio/minio
|
|
|
|
release: genversion
|
|
@echo "Installing minio for new version.go:"
|
|
@go install github.com/minio/minio
|
|
|
|
genversion:
|
|
@echo "Generating new minio version.go"
|
|
@go run genversion.go
|
|
|
|
install: gomake-all
|
|
|
|
clean:
|
|
@echo "Cleaning up all the generated files:"
|
|
@rm -fv cover.out
|
|
@rm -fv pkg/utils/split/TESTPREFIX.*
|
|
@rm -fv minio
|
|
|