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-07-15 14:57:39 -04:00
|
|
|
all: build
|
2014-11-30 16:55:10 -05:00
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
checks: ## check dependencies
|
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
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
help: ## print this help
|
|
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|
|
|
|
|
|
|
|
getdeps: ## fetch necessary dependencies
|
2019-03-27 19:16:17 -04:00
|
|
|
@mkdir -p ${GOPATH}/bin
|
2022-04-13 17:21:55 -04:00
|
|
|
@echo "Installing golangci-lint" && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(GOPATH)/bin v1.45.2
|
2021-11-18 15:15:22 -05:00
|
|
|
@echo "Installing msgp" && go install -v github.com/tinylib/msgp@v1.1.7-0.20211026165309-e818a1881b0e
|
2021-11-05 15:20:08 -04:00
|
|
|
@echo "Installing stringer" && go install -v golang.org/x/tools/cmd/stringer@latest
|
2015-03-09 19:15:06 -04:00
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
crosscompile: ## cross compile minio
|
2019-01-21 22:57:23 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/cross-compile.sh)
|
|
|
|
|
2021-03-04 17:27:38 -05:00
|
|
|
verifiers: getdeps lint check-gen
|
2020-09-28 16:33:34 -04:00
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
check-gen: ## check for updated autogenerated files
|
2020-09-28 16:33:34 -04:00
|
|
|
@go generate ./... >/dev/null
|
2020-10-02 14:10:39 -04: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 21:34:00 -04:00
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
lint: ## runs golangci-lint suite of linters
|
2019-09-11 19:27:59 -04:00
|
|
|
@echo "Running $@ check"
|
2022-01-02 12:15:06 -05:00
|
|
|
@${GOPATH}/bin/golangci-lint run --build-tags kqueue --timeout=10m --config ./.golangci.yml
|
2020-08-24 15:11:20 -04:00
|
|
|
|
2017-07-15 14:57:39 -04:00
|
|
|
check: test
|
2021-10-01 14:53:06 -04:00
|
|
|
test: verifiers build ## builds minio, runs linters, tests
|
2017-09-12 19:56:33 -04:00
|
|
|
@echo "Running unit tests"
|
2022-01-02 12:15:06 -05:00
|
|
|
@CGO_ENABLED=0 go test -tags kqueue ./...
|
2018-08-28 04:27:01 -04:00
|
|
|
|
2022-07-04 17:02:54 -04:00
|
|
|
test-decom: install
|
|
|
|
@echo "Running minio decom tests"
|
|
|
|
@env bash $(PWD)/docs/distributed/decom.sh
|
|
|
|
|
2021-11-21 13:41:30 -05:00
|
|
|
test-upgrade: build
|
|
|
|
@echo "Running minio upgrade tests"
|
|
|
|
@(env bash $(PWD)/buildscripts/minio-upgrade.sh)
|
|
|
|
|
2021-11-10 21:18:09 -05:00
|
|
|
test-race: verifiers build ## builds minio, runs linters, tests (race)
|
2020-01-10 05:35:06 -05:00
|
|
|
@echo "Running unit tests under -race"
|
|
|
|
@(env bash $(PWD)/buildscripts/race.sh)
|
|
|
|
|
2021-11-10 21:18:09 -05:00
|
|
|
test-iam: build ## verify IAM (external IDP, etcd backends)
|
2021-11-09 12:25:13 -05:00
|
|
|
@echo "Running tests for IAM (external IDP, etcd backends)"
|
|
|
|
@CGO_ENABLED=0 go test -tags kqueue -v -run TestIAM* ./cmd
|
|
|
|
@echo "Running tests for IAM (external IDP, etcd backends) with -race"
|
2022-05-30 13:58:37 -04:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go test -race -tags kqueue -v -run TestIAM* ./cmd
|
2021-11-04 11:16:30 -04:00
|
|
|
|
2021-11-10 21:18:09 -05:00
|
|
|
test-replication: install ## verify multi site replication
|
2021-12-08 14:50:15 -05:00
|
|
|
@echo "Running tests for replicating three sites"
|
2021-11-10 21:18:09 -05:00
|
|
|
@(env bash $(PWD)/docs/bucket/replication/setup_3site_replication.sh)
|
2022-06-06 05:54:39 -04:00
|
|
|
@(env bash $(PWD)/docs/bucket/replication/setup_2site_existing_replication.sh)
|
2021-11-10 21:18:09 -05:00
|
|
|
|
2022-01-07 20:41:43 -05:00
|
|
|
test-site-replication-ldap: install ## verify automatic site replication
|
|
|
|
@echo "Running tests for automatic site replication of IAM (with LDAP)"
|
|
|
|
@(env bash $(PWD)/docs/site-replication/run-multi-site-ldap.sh)
|
|
|
|
|
|
|
|
test-site-replication-oidc: install ## verify automatic site replication
|
|
|
|
@echo "Running tests for automatic site replication of IAM (with OIDC)"
|
|
|
|
@(env bash $(PWD)/docs/site-replication/run-multi-site-oidc.sh)
|
2021-12-08 14:50:15 -05:00
|
|
|
|
2022-01-07 22:11:54 -05:00
|
|
|
test-site-replication-minio: install ## verify automatic site replication
|
|
|
|
@echo "Running tests for automatic site replication of IAM (with MinIO IDP)"
|
|
|
|
@(env bash $(PWD)/docs/site-replication/run-multi-site-minio-idp.sh)
|
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
verify: ## verify minio various setups
|
2019-12-02 18:54:26 -05:00
|
|
|
@echo "Verifying build with race"
|
2022-05-30 13:58:37 -04:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(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
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
verify-healing: ## verify healing and replacing disks with minio binary
|
2020-01-10 05:35:06 -05:00
|
|
|
@echo "Verify healing build with race"
|
2022-05-30 13:58:37 -04:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2020-01-10 05:35:06 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/verify-healing.sh)
|
2021-12-21 13:08:26 -05:00
|
|
|
@(env bash $(PWD)/buildscripts/unaligned-healing.sh)
|
2016-08-04 19:48:50 -04:00
|
|
|
|
2022-07-13 19:29:44 -04:00
|
|
|
verify-healing-with-root-disks:
|
|
|
|
@echo "Verify healing with root disks"
|
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
|
|
|
@(env bash $(PWD)/buildscripts/verify-healing-with-root-disks.sh)
|
|
|
|
|
2022-04-20 15:49:05 -04:00
|
|
|
verify-healing-inconsistent-versions: ## verify resolving inconsistent versions
|
|
|
|
@echo "Verify resolving inconsistent versions build with race"
|
2022-05-30 13:58:37 -04:00
|
|
|
@GORACE=history_size=7 CGO_ENABLED=1 go build -race -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2022-04-20 15:49:05 -04:00
|
|
|
@(env bash $(PWD)/buildscripts/resolve-right-versions.sh)
|
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
build: checks ## builds minio to $(PWD)
|
2018-02-13 23:59:19 -05:00
|
|
|
@echo "Building minio binary to './minio'"
|
2022-01-02 12:15:06 -05:00
|
|
|
@CGO_ENABLED=0 go build -tags kqueue -trimpath --ldflags "$(LDFLAGS)" -o $(PWD)/minio 1>/dev/null
|
2014-11-01 20:04:24 -04:00
|
|
|
|
2021-02-09 12:29:43 -05:00
|
|
|
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#')))
|
2021-12-02 20:33:37 -05:00
|
|
|
$(eval VERSION := $(shell git describe --tags --abbrev=0).hotfix.$(shell git rev-parse --short HEAD))
|
|
|
|
$(eval TAG := "minio/minio:$(VERSION)")
|
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
hotfix: hotfix-vars install ## builds minio binary with hotfix tags
|
2021-12-02 20:33:37 -05:00
|
|
|
@mv -f ./minio ./minio.$(VERSION)
|
|
|
|
@minisign -qQSm ./minio.$(VERSION) -s "${CRED_DIR}/minisign.key" < "${CRED_DIR}/minisign-passphrase"
|
|
|
|
@sha256sum < ./minio.$(VERSION) | sed 's, -,minio.$(VERSION),g' > minio.$(VERSION).sha256sum
|
|
|
|
|
|
|
|
hotfix-push: hotfix
|
2022-02-03 18:40:32 -05:00
|
|
|
@scp -q -r minio.$(VERSION)* minio@dl-0.minio.io:~/releases/server/minio/hotfixes/linux-amd64/archive/
|
|
|
|
@scp -q -r minio.$(VERSION)* minio@dl-1.minio.io:~/releases/server/minio/hotfixes/linux-amd64/archive/
|
|
|
|
@echo "Published new hotfix binaries at https://dl.min.io/server/minio/hotfixes/linux-amd64/archive/minio.$(VERSION)"
|
2021-12-02 20:33:37 -05:00
|
|
|
|
|
|
|
docker-hotfix-push: docker-hotfix
|
2022-02-03 18:40:32 -05:00
|
|
|
@docker push -q $(TAG) && echo "Published new container $(TAG)"
|
2020-12-08 11:12:13 -05:00
|
|
|
|
2021-12-02 20:33:37 -05:00
|
|
|
docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags
|
2021-01-28 18:54:41 -05:00
|
|
|
@echo "Building minio docker image '$(TAG)'"
|
2022-02-03 18:40:32 -05:00
|
|
|
@docker build -q --no-cache -t $(TAG) --build-arg RELEASE=$(VERSION) . -f Dockerfile.hotfix
|
2021-01-28 18:54:41 -05:00
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
docker: build checks ## builds minio docker container
|
2020-06-28 11:15:15 -04:00
|
|
|
@echo "Building minio docker image '$(TAG)'"
|
2022-02-03 18:40:32 -05:00
|
|
|
@docker build -q --no-cache -t $(TAG) . -f Dockerfile
|
2018-09-25 13:33:25 -04:00
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
install: build ## builds minio and installs it to $GOPATH/bin.
|
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
|
|
|
|
2021-10-01 14:53:06 -04:00
|
|
|
clean: ## cleanup all generated assets
|
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*
|