2016-02-18 20:16:41 -05:00
|
|
|
PWD := $(shell pwd)
|
|
|
|
GOPATH := $(shell go env GOPATH)
|
2017-06-26 21:07:06 -04:00
|
|
|
LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
|
2017-06-02 17:05:51 -04:00
|
|
|
|
2019-09-11 19:27:59 -04:00
|
|
|
GOARCH := $(shell go env GOARCH)
|
2019-06-04 03:59:40 -04:00
|
|
|
GOOS := $(shell go env GOOS)
|
|
|
|
|
2019-09-20 19:19:56 -04:00
|
|
|
VERSION ?= $(shell git describe --tags)
|
|
|
|
TAG ?= "minio/minio:$(VERSION)"
|
|
|
|
|
2017-04-25 02:01:38 -04:00
|
|
|
BUILD_LDFLAGS := '$(LDFLAGS)'
|
2016-02-13 04:03:01 -05:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
all: build
|
2014-11-30 16:55:10 -05:00
|
|
|
|
2016-02-18 20:16:41 -05:00
|
|
|
checks:
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Checking dependencies"
|
2015-02-22 00:38:04 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/checkdeps.sh)
|
2015-02-02 00:18:46 -05:00
|
|
|
|
2018-02-13 23:59:19 -05:00
|
|
|
getdeps:
|
2019-03-27 19:16:17 -04:00
|
|
|
@mkdir -p ${GOPATH}/bin
|
2020-05-18 12:59:45 -04:00
|
|
|
@which golangci-lint 1>/dev/null || (echo "Installing golangci-lint" && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.27.0)
|
2015-03-09 19:15:06 -04:00
|
|
|
|
2019-01-21 22:57:23 -05:00
|
|
|
crosscompile:
|
|
|
|
@(env bash $(PWD)/buildscripts/cross-compile.sh)
|
|
|
|
|
2020-05-18 12:59:45 -04:00
|
|
|
verifiers: getdeps fmt lint
|
2015-08-22 21:34:00 -04:00
|
|
|
|
2015-03-09 19:15:06 -04:00
|
|
|
fmt:
|
2019-09-11 19:27:59 -04:00
|
|
|
@echo "Running $@ check"
|
2019-09-08 19:44:15 -04:00
|
|
|
@GO111MODULE=on gofmt -d cmd/
|
|
|
|
@GO111MODULE=on gofmt -d pkg/
|
2015-08-12 22:24:31 -04:00
|
|
|
|
2015-03-09 19:15:06 -04:00
|
|
|
lint:
|
2019-09-11 19:27:59 -04:00
|
|
|
@echo "Running $@ check"
|
2020-05-18 12:59:45 -04:00
|
|
|
@GO111MODULE=on ${GOPATH}/bin/golangci-lint cache clean
|
|
|
|
@GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=5m --config ./.golangci.yml
|
2015-09-18 01:10:09 -04:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
# Builds minio, runs the verifiers then runs the tests.
|
|
|
|
check: test
|
|
|
|
test: verifiers build
|
2017-09-12 19:56:33 -04:00
|
|
|
@echo "Running unit tests"
|
2019-09-08 19:44:15 -04:00
|
|
|
@GO111MODULE=on CGO_ENABLED=0 go test -tags kqueue ./... 1>/dev/null
|
2018-08-28 04:27:01 -04:00
|
|
|
|
2020-01-10 05:35:06 -05:00
|
|
|
test-race: verifiers build
|
|
|
|
@echo "Running unit tests under -race"
|
|
|
|
@(env bash $(PWD)/buildscripts/race.sh)
|
|
|
|
|
2019-10-09 02:11:15 -04:00
|
|
|
# Verify minio binary
|
2019-10-08 01:47:56 -04:00
|
|
|
verify:
|
2019-12-02 18:54:26 -05:00
|
|
|
@echo "Verifying build with race"
|
2020-04-01 13:45:11 -04:00
|
|
|
@GO111MODULE=on CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio 1>/dev/null
|
2017-09-12 19:56:33 -04:00
|
|
|
@(env bash $(PWD)/buildscripts/verify-build.sh)
|
2015-01-21 03:50:23 -05:00
|
|
|
|
2020-01-10 05:35:06 -05:00
|
|
|
# Verify healing of disks with minio binary
|
|
|
|
verify-healing:
|
|
|
|
@echo "Verify healing build with race"
|
2020-04-01 13:45:11 -04:00
|
|
|
@GO111MODULE=on CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio 1>/dev/null
|
2020-01-10 05:35:06 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/verify-healing.sh)
|
2016-08-04 19:48:50 -04:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
# Builds minio locally.
|
2018-02-13 23:59:19 -05:00
|
|
|
build: checks
|
|
|
|
@echo "Building minio binary to './minio'"
|
2020-04-01 13:45:11 -04:00
|
|
|
@GO111MODULE=on CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags $(BUILD_LDFLAGS) -o $(PWD)/minio 1>/dev/null
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2018-09-25 13:33:25 -04:00
|
|
|
docker: build
|
|
|
|
@docker build -t $(TAG) . -f Dockerfile.dev
|
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
# Builds minio and installs it to $GOPATH/bin.
|
|
|
|
install: build
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Installing minio binary to '$(GOPATH)/bin/minio'"
|
2019-05-07 13:39:26 -04:00
|
|
|
@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/minio $(GOPATH)/bin/minio
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Installation successful. To learn more, try \"minio --help\"."
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2014-12-01 17:45:50 -05:00
|
|
|
clean:
|
2017-06-02 17:05:51 -04:00
|
|
|
@echo "Cleaning up all the generated files"
|
2016-02-10 19:40:09 -05:00
|
|
|
@find . -name '*.test' | xargs rm -fv
|
2019-02-13 07:59:36 -05:00
|
|
|
@find . -name '*~' | xargs rm -fv
|
2018-02-13 23:59:19 -05:00
|
|
|
@rm -rvf minio
|
|
|
|
@rm -rvf build
|
|
|
|
@rm -rvf release
|
2020-04-01 03:04:25 -04:00
|
|
|
@rm -rvf .verify*
|