-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
77 lines (58 loc) · 3.74 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
GOFMT_FILES?=$(shell find . -not -path "./vendor/*" -type f -name '*.go')
APP_NAME?=gocd-cli
APP_DIR?=$(shell git rev-parse --show-toplevel)
DEV?=${DEVBOX_TRUE}
SRC_PACKAGES=$(shell go list -mod=vendor ./... | grep -v "vendor" | grep -v "mocks")
BUILD_ENVIRONMENT?=${ENVIRONMENT}
VERSION?=0.1.0
REVISION?=$(shell git rev-parse --verify HEAD)
DATE?=$(shell date)
PlATFORM?=$(shell go env GOOS)
ARCHITECTURE?=$(shell go env GOARCH)
GOVERSION?=$(shell go version | awk '{printf $$3}')
BUILD_WITH_FLAGS="-s -w -X 'github.com/nikhilsbhat/gocd-cli/cmd.Version=${VERSION}' -X 'github.com/nikhilsbhat/gocd-cli/cmd.Env=${BUILD_ENVIRONMENT}' -X 'github.com/nikhilsbhat/gocd-cli/cmd.BuildDate=${DATE}' -X 'github.com/nikhilsbhat/gocd-cli/cmd.Revision=${REVISION}' -X 'github.com/nikhilsbhat/gocd-cli/cmd.Platform=${PlATFORM}/${ARCHITECTURE}' -X 'github.com/nikhilsbhat/gocd-cli/cmd.GoVersion=${GOVERSION}'"
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))
GOBIN=$(shell go env GOPATH)/bin
else
GOBIN=$(shell go env GOBIN)
endif
.PHONY: help
help: ## Prints help (only for targets with comments)
@grep -E '^[a-zA-Z0-9._-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
local/fmt: ## Lints all the go code in the application.
@gofmt -w $(GOFMT_FILES)
$(GOBIN)/goimports -w $(GOFMT_FILES)
$(GOBIN)/gofumpt -l -w $(GOFMT_FILES)
$(GOBIN)/gci write $(GOFMT_FILES) --skip-generated
local/check: local/fmt ## Loads all the dependencies to vendor directory
@go mod vendor
@go mod tidy
local/build: local/check ## Generates the artifact with the help of 'go build'
@go build -o $(APP_NAME)_v$(VERSION) -ldflags="-s -w"
local/push: local/build ## Pushes built artifact to the specified location
local/run: local/build ## Generates the artifact and start the service in the current directory
./${APP_NAME}
publish: local/check ## Builds and publishes the app
GOVERSION=${GOVERSION} BUILD_ENVIRONMENT=${BUILD_ENVIRONMENT} PLUGIN_PATH=${APP_DIR} goreleaser release --clean
mock/publish: local/check ## Builds and mocks app release
GOVERSION=${GOVERSION} BUILD_ENVIRONMENT=${BUILD_ENVIRONMENT} PLUGIN_PATH=${APP_DIR} goreleaser release --skip=publish --clean
lint: ## Lint's application for errors, it is a linters aggregator (https://github.com/golangci/golangci-lint).
if [ -z "${DEV}" ]; then golangci-lint run --color always ; else docker run --rm -v $(APP_DIR):/app -w /app golangci/golangci-lint:v1.46.2-alpine golangci-lint run --color always ; fi
report: ## Publishes the go-report of the appliction (uses go-reportcard)
if [ -z "${DEV}" ]; then goreportcard -v ; else docker run --rm -v $(APP_DIR):/app -w /app basnik/goreportcard-cli:latest goreportcard-cli -v ; fi
dev.prerequisite.up: ## Sets up the development environment with all necessary components.
$(APP_DIR)/scripts/prerequisite.sh
dev.prerequisite.purge: ## Teardown the development environment by removing all components.
install/hooks: ## install pre-push hooks for the repository.
${APP_DIR}/scripts/hook.sh ${APP_DIR}
generate/mock: ## generates mocks for the selected source packages.
@go generate ${SRC_PACKAGES}
generate/document: ## generates cli documents using 'github.com/spf13/cobra/doc'.
@go generate github.com/nikhilsbhat/gocd-cli/docs
test: ## runs test cases
@go test ./... -mod=vendor -coverprofile cover.out && go tool cover -html=cover.out -o cover.html && open cover.html
docker/login: ## Should login to ghcr docker registry.
@echo "${GITHUB_TOKEN}" | docker login ghcr.io -u nikshilsbhat --password-stdin
image/scan: mock/publish ## scans image for vulnerabilities
@docker-compose --project-name trivy -f docker-compose.trivy.yml run --rm trivy image ghcr.io/nikhilsbhat/gocd-cli:latest