-
Notifications
You must be signed in to change notification settings - Fork 15
/
Makefile
31 lines (22 loc) · 886 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
PROJECT_NAME := "gcr-lifecycle-policy"
PKG := "github.com/marekaf/gcr-lifecycle-policy"
PKG_LIST := $(shell go list ${PKG}/... | grep -v /vendor/)
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v _test.go)
.PHONY: all dep build test lint
all: build
help:
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
functions := $(shell find cmd -name \*main.go | awk -F'/' '{print $$2}')
build: ## Build golang binaries
@for function in $(functions) ; do \
go build -ldflags="-s -w" -o bin/$$function cmd/$$function/*.go ; \
done
lint: ## Lint the files
@golint -set_exit_status ${PKG_LIST}
test: ## Run unittests
@go test -short ${PKG_LIST}
dep: ## Get the dependencies
@go get -v -d ./...
@go get -u golang.org/x/lint/golint
e2e: ## run E2E tests
./scripts/e2e.sh