minio/Makefile

109 lines
3.8 KiB
Makefile
Raw Normal View History

2015-11-07 08:55:02 +01:00
LDFLAGS := $(shell go run buildscripts/gen-ldflags.go)
DOCKER_BIN := $(shell which docker)
DOCKER_LDFLAGS := '$(LDFLAGS) -extldflags "-static"'
BUILD_LDFLAGS := '$(LDFLAGS)'
2015-11-07 08:55:02 +01:00
TAG := latest
2016-02-05 01:00:52 +01:00
UI_ASSETS := ui-assets.go
UI_ASSETS_ARMOR := ui-assets.asc
all: install
2014-11-30 22:55:10 +01:00
2014-12-04 10:56:01 +01:00
checkdeps:
2015-03-26 07:10:03 +01:00
@echo "Checking deps:"
@(env bash $(PWD)/buildscripts/checkdeps.sh)
2014-12-04 10:56:01 +01:00
2015-02-18 23:35:49 +01:00
checkgopath:
2015-04-12 02:31:01 +02:00
@echo "Checking if project is at ${GOPATH}"
2015-10-18 00:03:46 +02:00
@for miniopath in $(echo ${GOPATH} | sed 's/:/\n/g'); do if [ ! -d ${miniopath}/src/github.com/minio/minio ]; then echo "Project not found in ${miniopath}, please follow instructions provided at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi done
@echo "Setting BUILD_LDFLAGS: ${BUILD_LDFLAGS}"
checkdocker:
@echo "Checking if docker is installed.. "
@if [ -z ${DOCKER_BIN} ]; then echo "Docker not installed, cannot build docker image. Please install 'sudo apt-get install docker.io'" && exit 1; else echo "Docker installed at ${DOCKER_BIN}."; fi;
2015-02-18 23:35:49 +01:00
getdeps: checkdeps checkgopath
2015-10-26 10:36:01 +01:00
@go get -u github.com/golang/lint/golint && echo "Installed golint:"
@go get -u golang.org/x/tools/cmd/vet && echo "Installed vet:"
@go get -u github.com/fzipp/gocyclo && echo "Installed gocyclo:"
@go get -u github.com/remyoudompheng/go-misc/deadcode && echo "Installed deadcode:"
@go get -u github.com/client9/misspell/cmd/misspell && echo "Installed misspell:"
2016-02-05 01:00:52 +01:00
$(UI_ASSETS):
2016-02-11 01:04:01 +01:00
@curl -s https://dl.minio.io/assets/server/ui/$(UI_ASSETS_ARMOR) 2>&1 > $(UI_ASSETS_ARMOR) && echo "Downloading signature file $(UI_ASSETS_ARMOR) for verification:"
2016-02-05 01:00:52 +01:00
@gpg --batch --no-tty --yes --keyserver pgp.mit.edu --recv-keys F9AAC728 2>&1 > /dev/null && echo "Importing public key:"
2016-02-11 01:04:01 +01:00
@curl -s https://dl.minio.io/assets/server/ui/$@ 2>&1 > $@ && echo "Downloading UI assets file $@:"
2016-02-05 01:00:52 +01:00
@gpg --batch --no-tty --verify $(UI_ASSETS_ARMOR) $@ 2>&1 > /dev/null && echo "Verifying signature of downloaded assets."
verifiers: getdeps vet fmt lint cyclo spelling
vet:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 go tool vet -all *.go
@GO15VENDOREXPERIMENT=1 go tool vet -all ./pkg
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true *.go
@GO15VENDOREXPERIMENT=1 go tool vet -shadow=true ./pkg
fmt:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 gofmt -s -l *.go
@GO15VENDOREXPERIMENT=1 gofmt -s -l pkg
lint:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/golint *.go
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/golint github.com/minio/minio/pkg...
cyclo:
2015-03-26 06:51:19 +01:00
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/gocyclo -over 65 *.go
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/gocyclo -over 65 pkg
2016-02-05 01:00:52 +01:00
build: getdeps verifiers $(UI_ASSETS)
2015-10-26 10:36:01 +01:00
@echo "Installing minio:"
deadcode:
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/deadcode
spelling:
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell *.go
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/misspell pkg/**/*
test: build
@echo "Running all testing:"
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) .
@GO15VENDOREXPERIMENT=1 go test $(GOFLAGS) github.com/minio/minio/pkg...
2015-01-21 09:50:23 +01:00
gomake-all: build
@GO15VENDOREXPERIMENT=1 go build --ldflags $(BUILD_LDFLAGS) -o $(GOPATH)/bin/minio
pkg-add:
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/govendor add $(PKG)
pkg-update:
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/govendor update $(PKG)
pkg-remove:
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/govendor remove $(PKG)
install: gomake-all
2016-02-05 03:19:49 +01:00
dockerimage: checkdocker verifiers $(UI_ASSETS)
@echo "Building docker image:" minio:$(TAG)
@GO15VENDOREXPERIMENT=1 go build --ldflags $(DOCKER_LDFLAGS) -o minio.dockerimage
@mkdir -p export
2015-11-28 21:10:13 +01:00
@sudo docker build --rm --tag=minio/minio:$(TAG) .
@rmdir export
@rm minio.dockerimage
2015-12-02 19:50:54 +01:00
release:
@./release.sh
2014-12-01 23:45:50 +01:00
clean:
2015-03-26 06:51:19 +01:00
@echo "Cleaning up all the generated files:"
2015-01-14 21:40:43 +01:00
@rm -fv cover.out
2015-04-29 06:24:59 +02:00
@rm -fv minio
2015-10-18 00:03:46 +02:00
@rm -fv minio.test
@rm -fv pkg/fs/fs.test
@rm -fv ui-assets.go
@rm -fv ui-assets.asc