2016-02-18 17:16:41 -08:00
|
|
|
PWD := $(shell pwd)
|
|
|
|
GOPATH := $(shell go env GOPATH)
|
2017-06-26 18:07:06 -07:00
|
|
|
LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
|
2017-06-02 14:05:51 -07:00
|
|
|
|
2019-06-04 00:59:40 -07:00
|
|
|
GOOS := $(shell go env GOOS)
|
2019-06-05 16:28:21 -07:00
|
|
|
GOOSALT ?= 'linux'
|
|
|
|
ifeq ($(GOOS),'darwin')
|
|
|
|
GOOSALT = 'mac'
|
|
|
|
endif
|
2019-06-04 00:59:40 -07:00
|
|
|
|
2019-04-02 18:28:39 -07:00
|
|
|
TAG ?= $(USER)
|
2017-04-24 23:01:38 -07:00
|
|
|
BUILD_LDFLAGS := '$(LDFLAGS)'
|
2016-02-13 01:03:01 -08:00
|
|
|
|
2017-07-15 11:57:39 -07:00
|
|
|
all: build
|
2014-11-30 13:55:10 -08:00
|
|
|
|
2016-02-18 17:16:41 -08:00
|
|
|
checks:
|
2018-02-13 20:59:19 -08:00
|
|
|
@echo "Checking dependencies"
|
2015-02-21 21:38:04 -08:00
|
|
|
@(env bash $(PWD)/buildscripts/checkdeps.sh)
|
2015-02-01 21:18:46 -08:00
|
|
|
|
2018-02-13 20:59:19 -08:00
|
|
|
getdeps:
|
2019-03-28 00:16:17 +01:00
|
|
|
@mkdir -p ${GOPATH}/bin
|
|
|
|
@which golint 1>/dev/null || (echo "Installing golint" && go get -u golang.org/x/lint/golint)
|
2019-06-04 00:59:40 -07:00
|
|
|
@which staticcheck 1>/dev/null || (echo "Installing staticcheck" && wget --quiet -O ${GOPATH}/bin/staticcheck https://github.com/dominikh/go-tools/releases/download/2019.1/staticcheck_${GOOS}_amd64 && chmod +x ${GOPATH}/bin/staticcheck)
|
|
|
|
@which misspell 1>/dev/null || (echo "Installing misspell" && wget --quiet https://github.com/client9/misspell/releases/download/v0.3.4/misspell_0.3.4_${GOOSALT}_64bit.tar.gz && tar xf misspell_0.3.4_${GOOSALT}_64bit.tar.gz && mv misspell ${GOPATH}/bin/misspell && chmod +x ${GOPATH}/bin/misspell && rm -f misspell_0.3.4_${GOOSALT}_64bit.tar.gz)
|
2015-03-09 16:15:06 -07:00
|
|
|
|
2019-01-22 09:27:23 +05:30
|
|
|
crosscompile:
|
|
|
|
@(env bash $(PWD)/buildscripts/cross-compile.sh)
|
|
|
|
|
2019-02-13 04:59:36 -08:00
|
|
|
verifiers: getdeps vet fmt lint staticcheck spelling
|
2015-03-09 16:15:06 -07:00
|
|
|
|
|
|
|
vet:
|
2017-06-02 14:05:51 -07:00
|
|
|
@echo "Running $@"
|
2019-07-30 09:57:11 -07:00
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on go vet github.com/minio/minio/...
|
2015-08-22 18:34:00 -07:00
|
|
|
|
2015-03-09 16:15:06 -07:00
|
|
|
fmt:
|
2017-06-02 14:05:51 -07:00
|
|
|
@echo "Running $@"
|
2019-07-30 09:57:11 -07:00
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on gofmt -d cmd/
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on gofmt -d pkg/
|
2015-08-12 19:24:31 -07:00
|
|
|
|
2015-03-09 16:15:06 -07:00
|
|
|
lint:
|
2017-06-02 14:05:51 -07:00
|
|
|
@echo "Running $@"
|
2019-07-30 09:57:11 -07:00
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/golint -set_exit_status github.com/minio/minio/cmd/...
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/golint -set_exit_status github.com/minio/minio/pkg/...
|
2015-03-09 16:15:06 -07:00
|
|
|
|
2019-02-13 04:59:36 -08:00
|
|
|
staticcheck:
|
2017-06-02 14:05:51 -07:00
|
|
|
@echo "Running $@"
|
2019-07-30 09:57:11 -07:00
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/staticcheck github.com/minio/minio/cmd/...
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/staticcheck github.com/minio/minio/pkg/...
|
2016-02-09 21:51:03 -08:00
|
|
|
|
|
|
|
spelling:
|
2019-07-30 09:57:11 -07:00
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/misspell -locale US -error `find cmd/`
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/misspell -locale US -error `find pkg/`
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/misspell -locale US -error `find docs/`
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/misspell -locale US -error `find buildscripts/`
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on ${GOPATH}/bin/misspell -locale US -error `find dockerscripts/`
|
2015-09-17 22:10:09 -07:00
|
|
|
|
2017-07-15 11:57:39 -07:00
|
|
|
# Builds minio, runs the verifiers then runs the tests.
|
|
|
|
check: test
|
|
|
|
test: verifiers build
|
2017-09-12 16:56:33 -07:00
|
|
|
@echo "Running unit tests"
|
2019-07-30 09:57:11 -07:00
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on CGO_ENABLED=0 go test -tags kqueue ./... 1>/dev/null
|
2018-08-28 01:27:01 -07:00
|
|
|
|
|
|
|
verify: build
|
2017-09-12 16:56:33 -07:00
|
|
|
@echo "Verifying build"
|
|
|
|
@(env bash $(PWD)/buildscripts/verify-build.sh)
|
2015-01-21 00:50:23 -08:00
|
|
|
|
2016-08-04 16:48:50 -07:00
|
|
|
coverage: build
|
2017-06-02 14:05:51 -07:00
|
|
|
@echo "Running all coverage for minio"
|
2017-12-05 17:58:09 -08:00
|
|
|
@(env bash $(PWD)/buildscripts/go-coverage.sh)
|
2016-08-04 16:48:50 -07:00
|
|
|
|
2017-07-15 11:57:39 -07:00
|
|
|
# Builds minio locally.
|
2018-02-13 20:59:19 -08:00
|
|
|
build: checks
|
|
|
|
@echo "Building minio binary to './minio'"
|
2019-07-30 09:57:11 -07:00
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on GOFLAGS="" CGO_ENABLED=0 go build -tags kqueue --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio 1>/dev/null
|
|
|
|
@GOPROXY=https://proxy.golang.org GO111MODULE=on GOFLAGS="" CGO_ENABLED=0 go build -tags kqueue --ldflags $(BUILD_LDFLAGS) -o $(PWD)/dockerscripts/healthcheck $(PWD)/dockerscripts/healthcheck.go 1>/dev/null
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2018-09-25 10:33:25 -07:00
|
|
|
docker: build
|
|
|
|
@docker build -t $(TAG) . -f Dockerfile.dev
|
|
|
|
|
2017-07-15 11:57:39 -07:00
|
|
|
# Builds minio and installs it to $GOPATH/bin.
|
|
|
|
install: build
|
2018-02-13 20:59:19 -08:00
|
|
|
@echo "Installing minio binary to '$(GOPATH)/bin/minio'"
|
2019-05-07 10:39:26 -07:00
|
|
|
@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/minio $(GOPATH)/bin/minio
|
2018-02-13 20:59:19 -08:00
|
|
|
@echo "Installation successful. To learn more, try \"minio --help\"."
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2014-12-01 14:45:50 -08:00
|
|
|
clean:
|
2017-06-02 14:05:51 -07:00
|
|
|
@echo "Cleaning up all the generated files"
|
2016-02-10 16:40:09 -08:00
|
|
|
@find . -name '*.test' | xargs rm -fv
|
2019-02-13 04:59:36 -08:00
|
|
|
@find . -name '*~' | xargs rm -fv
|
2018-02-13 20:59:19 -08:00
|
|
|
@rm -rvf minio
|
|
|
|
@rm -rvf build
|
|
|
|
@rm -rvf release
|