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-09-11 16:27:59 -07:00
|
|
|
GOARCH := $(shell go env GOARCH)
|
2019-06-04 00:59:40 -07:00
|
|
|
GOOS := $(shell go env GOOS)
|
|
|
|
|
2019-09-20 16:19:56 -07:00
|
|
|
VERSION ?= $(shell git describe --tags)
|
|
|
|
TAG ?= "minio/minio:$(VERSION)"
|
|
|
|
|
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
|
2021-05-25 14:17:33 -07:00
|
|
|
@echo "Installing golangci-lint" && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.40.1
|
2021-05-21 11:41:25 -07:00
|
|
|
@which msgp 1>/dev/null || (echo "Installing msgp" && go install -v github.com/tinylib/msgp@v1.1.3)
|
|
|
|
@which stringer 1>/dev/null || (echo "Installing stringer" && go install -v golang.org/x/tools/cmd/stringer)
|
2015-03-09 16:15:06 -07:00
|
|
|
|
2019-01-22 09:27:23 +05:30
|
|
|
crosscompile:
|
|
|
|
@(env bash $(PWD)/buildscripts/cross-compile.sh)
|
|
|
|
|
2021-03-04 14:27:38 -08:00
|
|
|
verifiers: getdeps lint check-gen
|
2020-09-28 21:33:34 +01:00
|
|
|
|
|
|
|
check-gen:
|
|
|
|
@go generate ./... >/dev/null
|
2020-10-02 19:10:39 +01:00
|
|
|
@(! git diff --name-only | grep '_gen.go$$') || (echo "Non-committed changes in auto-generated code is detected, please commit them to proceed." && false)
|
2015-08-22 18:34:00 -07:00
|
|
|
|
2015-03-09 16:15:06 -07:00
|
|
|
lint:
|
2019-09-11 16:27:59 -07:00
|
|
|
@echo "Running $@ check"
|
2020-05-18 09:59:45 -07:00
|
|
|
@GO111MODULE=on ${GOPATH}/bin/golangci-lint cache clean
|
2021-03-04 14:27:38 -08:00
|
|
|
@GO111MODULE=on ${GOPATH}/bin/golangci-lint run --build-tags kqueue --timeout=10m --config ./.golangci.yml
|
2020-08-24 12:11:20 -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"
|
2021-03-17 09:38:38 -07:00
|
|
|
@GOGC=25 GO111MODULE=on CGO_ENABLED=0 go test -tags kqueue ./... 1>/dev/null
|
2018-08-28 01:27:01 -07:00
|
|
|
|
2020-01-10 02:35:06 -08:00
|
|
|
test-race: verifiers build
|
|
|
|
@echo "Running unit tests under -race"
|
|
|
|
@(env bash $(PWD)/buildscripts/race.sh)
|
|
|
|
|
2019-10-08 23:11:15 -07:00
|
|
|
# Verify minio binary
|
2019-10-07 22:47:56 -07:00
|
|
|
verify:
|
2019-12-02 15:54:26 -08:00
|
|
|
@echo "Verifying build with race"
|
2021-04-29 20:55:21 -07:00
|
|
|
@GO111MODULE=on CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2017-09-12 16:56:33 -07:00
|
|
|
@(env bash $(PWD)/buildscripts/verify-build.sh)
|
2015-01-21 00:50:23 -08:00
|
|
|
|
2020-01-10 02:35:06 -08:00
|
|
|
# Verify healing of disks with minio binary
|
|
|
|
verify-healing:
|
|
|
|
@echo "Verify healing build with race"
|
2020-06-04 14:58:34 -07:00
|
|
|
@GO111MODULE=on CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2020-01-10 02:35:06 -08:00
|
|
|
@(env bash $(PWD)/buildscripts/verify-healing.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'"
|
2020-06-04 14:58:34 -07:00
|
|
|
@GO111MODULE=on CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2014-11-01 17:04:24 -07:00
|
|
|
|
2021-02-09 22:59:43 +05:30
|
|
|
hotfix-vars:
|
|
|
|
$(eval LDFLAGS := $(shell MINIO_RELEASE="RELEASE" MINIO_HOTFIX="hotfix.$(shell git rev-parse --short HEAD)" go run buildscripts/gen-ldflags.go $(shell git describe --tags --abbrev=0 | \
|
|
|
|
sed 's#RELEASE\.\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)T\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)Z#\1-\2-\3T\4:\5:\6Z#')))
|
|
|
|
$(eval TAG := "minio/minio:$(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD)")
|
|
|
|
hotfix: hotfix-vars install
|
2020-12-08 17:12:13 +01:00
|
|
|
|
2021-01-28 15:54:41 -08:00
|
|
|
docker-hotfix: hotfix checks
|
|
|
|
@echo "Building minio docker image '$(TAG)'"
|
|
|
|
@docker build -t $(TAG) . -f Dockerfile.dev
|
|
|
|
|
2021-02-22 10:32:21 -08:00
|
|
|
docker: build checks
|
2020-06-28 08:15:15 -07:00
|
|
|
@echo "Building minio docker image '$(TAG)'"
|
2018-09-25 10:33:25 -07:00
|
|
|
@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
|
2020-04-01 00:04:25 -07:00
|
|
|
@rm -rvf .verify*
|