2018-03-20 01:52:49 +00:00
|
|
|
# Set an output prefix, which is the local directory if not specified
|
2016-04-15 06:42:40 +00:00
|
|
|
PREFIX?=$(shell pwd)
|
|
|
|
|
2018-03-20 01:52:49 +00:00
|
|
|
# Set any default go build tags
|
2018-03-20 02:21:14 +00:00
|
|
|
BUILDTAGS := seccomp apparmor
|
2016-04-15 06:42:40 +00:00
|
|
|
|
2018-03-20 05:46:02 +00:00
|
|
|
GO_LDFLAGS_STATIC=-ldflags "-w -extldflags -static"
|
2016-04-15 06:42:40 +00:00
|
|
|
|
2018-03-20 02:21:14 +00:00
|
|
|
all: clean build fmt lint test staticcheck vet ## Runs a clean, build, fmt, lint, test, staticcheck, and vet
|
2016-04-15 06:42:40 +00:00
|
|
|
|
2018-03-20 01:52:49 +00:00
|
|
|
.PHONY: build
|
2018-03-20 06:02:00 +00:00
|
|
|
build: alpine busybox cl-k8s ## Builds a static executable or package
|
2016-04-15 06:42:40 +00:00
|
|
|
|
2018-03-20 05:46:02 +00:00
|
|
|
.PHONY: alpine
|
2018-03-20 06:02:00 +00:00
|
|
|
alpine:
|
2018-03-20 05:46:02 +00:00
|
|
|
@echo "+ $@"
|
2018-03-20 06:02:00 +00:00
|
|
|
go generate ./examples/$@/...
|
2018-03-20 05:46:02 +00:00
|
|
|
CGO_ENABLED=1 go build \
|
|
|
|
-tags "$(BUILDTAGS) static_build" \
|
|
|
|
${GO_LDFLAGS_STATIC} -o $@ ./examples/$@/...
|
2018-03-20 05:54:27 +00:00
|
|
|
@echo "Static container for $@ created at: ./$@"
|
2016-04-15 08:54:02 +00:00
|
|
|
|
2018-03-20 05:46:02 +00:00
|
|
|
.PHONY: busybox
|
2018-03-20 06:02:00 +00:00
|
|
|
busybox:
|
2016-04-15 06:42:40 +00:00
|
|
|
@echo "+ $@"
|
2018-03-20 06:02:00 +00:00
|
|
|
go generate ./examples/$@/...
|
|
|
|
CGO_ENABLED=1 go build \
|
|
|
|
-tags "$(BUILDTAGS) static_build" \
|
|
|
|
${GO_LDFLAGS_STATIC} -o $@ ./examples/$@/...
|
|
|
|
@echo "Static container for $@ created at: ./$@"
|
|
|
|
|
|
|
|
.PHONY: cl-k8s
|
|
|
|
cl-k8s:
|
|
|
|
@echo "+ $@"
|
|
|
|
go generate ./examples/$@/...
|
2018-03-20 02:21:14 +00:00
|
|
|
CGO_ENABLED=1 go build \
|
2018-03-20 01:52:49 +00:00
|
|
|
-tags "$(BUILDTAGS) static_build" \
|
2018-03-20 05:46:02 +00:00
|
|
|
${GO_LDFLAGS_STATIC} -o $@ ./examples/$@/...
|
2018-03-20 05:54:27 +00:00
|
|
|
@echo "Static container for $@ created at: ./$@"
|
2016-04-15 08:54:02 +00:00
|
|
|
|
2018-03-20 01:52:49 +00:00
|
|
|
.PHONY: fmt
|
2018-09-21 19:43:11 +00:00
|
|
|
fmt: ## Verifies all files have been `gofmt`ed
|
2016-04-15 06:42:40 +00:00
|
|
|
@echo "+ $@"
|
2018-03-20 03:38:05 +00:00
|
|
|
@gofmt -s -l . | grep -v '.pb.go:' | grep -v vendor | grep -v bindata.go | tee /dev/stderr
|
2016-04-15 06:42:40 +00:00
|
|
|
|
2018-03-20 01:52:49 +00:00
|
|
|
.PHONY: lint
|
|
|
|
lint: ## Verifies `golint` passes
|
2016-04-15 06:42:40 +00:00
|
|
|
@echo "+ $@"
|
2018-03-20 01:52:49 +00:00
|
|
|
@golint ./... | grep -v '.pb.go:' | grep -v vendor | tee /dev/stderr
|
2016-04-15 06:42:40 +00:00
|
|
|
|
2018-03-20 01:52:49 +00:00
|
|
|
.PHONY: test
|
|
|
|
test: ## Runs the go tests
|
2016-04-15 06:42:40 +00:00
|
|
|
@echo "+ $@"
|
2018-03-20 01:52:49 +00:00
|
|
|
@go test -v -tags "$(BUILDTAGS) cgo" $(shell go list ./... | grep -v vendor)
|
2016-04-15 06:42:40 +00:00
|
|
|
|
2018-03-20 01:52:49 +00:00
|
|
|
.PHONY: vet
|
|
|
|
vet: ## Verifies `go vet` passes
|
2016-04-15 06:42:40 +00:00
|
|
|
@echo "+ $@"
|
2018-03-20 01:52:49 +00:00
|
|
|
@go vet $(shell go list ./... | grep -v vendor) | grep -v '.pb.go:' | tee /dev/stderr
|
2016-04-15 08:54:02 +00:00
|
|
|
|
2018-03-20 01:52:49 +00:00
|
|
|
.PHONY: staticcheck
|
|
|
|
staticcheck: ## Verifies `staticcheck` passes
|
2016-04-15 06:42:40 +00:00
|
|
|
@echo "+ $@"
|
2018-03-20 01:52:49 +00:00
|
|
|
@staticcheck $(shell go list ./... | grep -v vendor) | grep -v '.pb.go:' | tee /dev/stderr
|
|
|
|
|
|
|
|
.PHONY: cover
|
|
|
|
cover: ## Runs go test with coverage
|
|
|
|
@echo "" > coverage.txt
|
|
|
|
@for d in $(shell go list ./... | grep -v vendor); do \
|
|
|
|
go test -race -coverprofile=profile.out -covermode=atomic "$$d"; \
|
|
|
|
if [ -f profile.out ]; then \
|
|
|
|
cat profile.out >> coverage.txt; \
|
|
|
|
rm profile.out; \
|
|
|
|
fi; \
|
|
|
|
done;
|
|
|
|
|
|
|
|
.PHONY: bump-version
|
|
|
|
BUMP := patch
|
|
|
|
bump-version: ## Bump the version in the version file. Set BUMP to [ patch | major | minor ]
|
|
|
|
@go get -u github.com/jessfraz/junk/sembump # update sembump tool
|
|
|
|
$(eval NEW_VERSION = $(shell sembump --kind $(BUMP) $(VERSION)))
|
|
|
|
@echo "Bumping VERSION.txt from $(VERSION) to $(NEW_VERSION)"
|
|
|
|
echo $(NEW_VERSION) > VERSION.txt
|
|
|
|
@echo "Updating links to download binaries in README.md"
|
|
|
|
sed -i s/$(VERSION)/$(NEW_VERSION)/g README.md
|
|
|
|
git add VERSION.txt README.md
|
|
|
|
git commit -vsam "Bump version to $(NEW_VERSION)"
|
|
|
|
@echo "Run make tag to create and push the tag for new version $(NEW_VERSION)"
|
|
|
|
|
|
|
|
.PHONY: tag
|
|
|
|
tag: ## Create a new git tag to prepare to build a release
|
|
|
|
git tag -sa $(VERSION) -m "$(VERSION)"
|
|
|
|
@echo "Run git push origin $(VERSION) to push your new tag to GitHub and trigger a travis build."
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean: ## Cleanup any build binaries or packages
|
|
|
|
@echo "+ $@"
|
2018-03-20 06:02:00 +00:00
|
|
|
$(RM) alpine busybox cl-k8s
|
2018-03-20 02:21:14 +00:00
|
|
|
@sudo $(RM) -r rootfs
|
2018-03-20 01:52:49 +00:00
|
|
|
|
|
|
|
.PHONY: help
|
|
|
|
help:
|
|
|
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
|