|
|
|
BINDIR := $(CURDIR)/bin
|
|
|
|
DIST_DIRS := find * -type d -exec
|
|
|
|
TARGETS := darwin/amd64 linux/amd64 linux/386 linux/arm linux/arm64 linux/ppc64le windows/amd64
|
|
|
|
|
|
|
|
# go option
|
|
|
|
GO ?= go
|
|
|
|
PKG := ./...
|
|
|
|
TAGS :=
|
|
|
|
TESTS := .
|
|
|
|
TESTFLAGS :=
|
|
|
|
LDFLAGS := -w -s
|
|
|
|
GOFLAGS :=
|
|
|
|
|
|
|
|
# Required for globs to work correctly
|
|
|
|
SHELL = /bin/bash
|
|
|
|
|
|
|
|
GIT_COMMIT = $(shell git rev-parse HEAD)
|
|
|
|
GIT_SHA = $(shell git rev-parse --short HEAD)
|
|
|
|
GIT_TAG = $(shell git describe --tags --abbrev=0 --exact-match 2>/dev/null)
|
|
|
|
GIT_DIRTY = $(shell test -n "`git status --porcelain`" && echo "dirty" || echo "clean")
|
|
|
|
|
|
|
|
ifdef VERSION
|
|
|
|
BINARY_VERSION = $(VERSION)
|
|
|
|
endif
|
|
|
|
BINARY_VERSION ?= ${GIT_TAG}
|
|
|
|
|
|
|
|
# Only set Version if building a tag or VERSION is set
|
|
|
|
ifneq ($(BINARY_VERSION),)
|
|
|
|
LDFLAGS += -X k8s.io/helm/pkg/version.version=${BINARY_VERSION}
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Clear the "unreleased" string in BuildMetadata
|
|
|
|
ifneq ($(GIT_TAG),)
|
|
|
|
LDFLAGS += -X k8s.io/helm/pkg/version.metadata=
|
|
|
|
endif
|
|
|
|
LDFLAGS += -X k8s.io/helm/pkg/version.gitCommit=${GIT_COMMIT}
|
|
|
|
LDFLAGS += -X k8s.io/helm/pkg/version.gitTreeState=${GIT_DIRTY}
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: build
|
|
|
|
|
|
|
|
.PHONY: build
|
|
|
|
build:
|
|
|
|
$(GO) build $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' -o $(BINDIR)/helm k8s.io/helm/cmd/helm
|
|
|
|
|
|
|
|
.PHONY: build-cross
|
|
|
|
build-cross: LDFLAGS += -extldflags "-static"
|
|
|
|
build-cross:
|
|
|
|
CGO_ENABLED=0 gox -parallel=3 -output="_dist/{{.OS}}-{{.Arch}}/{{.Dir}}" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)' k8s.io/helm/cmd/helm
|
|
|
|
|
|
|
|
.PHONY: dist
|
|
|
|
dist:
|
|
|
|
( \
|
|
|
|
cd _dist && \
|
|
|
|
$(DIST_DIRS) cp ../LICENSE {} \; && \
|
|
|
|
$(DIST_DIRS) cp ../README.md {} \; && \
|
|
|
|
$(DIST_DIRS) tar -zcf helm-${VERSION}-{}.tar.gz {} \; && \
|
|
|
|
$(DIST_DIRS) zip -r helm-${VERSION}-{}.zip {} \; \
|
|
|
|
)
|
|
|
|
|
|
|
|
.PHONY: checksum
|
|
|
|
checksum:
|
|
|
|
for f in _dist/*.{gz,zip} ; do \
|
|
|
|
shasum -a 256 "$${f}" | awk '{print $$1}' > "$${f}.sha256" ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
test: build
|
|
|
|
test: TESTFLAGS += -race -v
|
|
|
|
test: test-style
|
|
|
|
test: test-unit
|
|
|
|
|
|
|
|
.PHONY: test-unit
|
|
|
|
test-unit:
|
|
|
|
@echo
|
|
|
|
@echo "==> Running unit tests <=="
|
|
|
|
HELM_HOME=/no_such_dir $(GO) test $(GOFLAGS) -run $(TESTS) $(PKG) $(TESTFLAGS)
|
|
|
|
|
|
|
|
.PHONY: test-style
|
|
|
|
test-style:
|
|
|
|
@scripts/validate-go.sh
|
|
|
|
@scripts/validate-license.sh
|
|
|
|
|
|
|
|
.PHONY: docs
|
|
|
|
docs: build
|
|
|
|
@scripts/update-docs.sh
|
|
|
|
|
|
|
|
.PHONY: verify-docs
|
|
|
|
verify-docs: build
|
|
|
|
@scripts/verify-docs.sh
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
@rm -rf $(BINDIR) ./_dist
|
|
|
|
|
|
|
|
.PHONY: coverage
|
|
|
|
coverage:
|
|
|
|
@scripts/coverage.sh
|
|
|
|
|
|
|
|
HAS_DEP := $(shell command -v dep;)
|
|
|
|
HAS_GOX := $(shell command -v gox;)
|
|
|
|
HAS_GIT := $(shell command -v git;)
|
|
|
|
|
|
|
|
.PHONY: bootstrap
|
|
|
|
bootstrap:
|
|
|
|
ifndef HAS_GIT
|
|
|
|
$(error You must install Git)
|
|
|
|
endif
|
|
|
|
ifndef HAS_DEP
|
|
|
|
go get -u github.com/golang/dep/cmd/dep
|
|
|
|
endif
|
|
|
|
ifndef HAS_GOX
|
|
|
|
go get -u github.com/mitchellh/gox
|
|
|
|
endif
|
|
|
|
dep ensure -vendor-only
|
|
|
|
|
|
|
|
.PHONY: info
|
|
|
|
info:
|
|
|
|
@echo "Version: ${VERSION}"
|
|
|
|
@echo "Git Tag: ${GIT_TAG}"
|
|
|
|
@echo "Git Commit: ${GIT_COMMIT}"
|
|
|
|
@echo "Git Tree State: ${GIT_DIRTY}"
|