-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakefile
More file actions
80 lines (64 loc) · 2.66 KB
/
Copy pathMakefile
File metadata and controls
80 lines (64 loc) · 2.66 KB
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
78
79
80
shell=/usr/bin/env bash -o errexit
ifndef BIN_NAME
override BIN_NAME = $(shell basename "$(PWD)")
endif
export CONTAINER_ENGINE ?= podman
export BIN_NAME
export REGISTRY ?= quay.io
export REGISTRY_NAMESPACE ?= opdev
VERSION=$(shell git rev-parse HEAD)
export RELEASE_TAG ?= "0.0.0"
.PHONY: binary-build
binary-build:
$(CONTAINER_ENGINE) run --rm -v $(PWD):/usr/src/$(BIN_NAME) -w /usr/src/$(BIN_NAME) -e GOOS=linux -e GOARCH=amd64 docker.io/library/golang:alpine go build -trimpath -ldflags "-s -w -X github.com/redhat-openshift-ecosystem/preflight-trigger/version.commit=$(VERSION) -X github.com/redhat-openshift-ecosystem/preflight-trigger/version.version=$(RELEASE_TAG)" -o $(BIN_NAME)
.PHONY: image-build
image-build:
$(CONTAINER_ENGINE) build --build-arg release_tag=$(RELEASE_TAG) -t $(REGISTRY)/$(REGISTRY_NAMESPACE)/$(BIN_NAME):$(RELEASE_TAG) .
.PHONY: image-push
image-push:
$(CONTAINER_ENGINE) push $(REGISTRY)/$(REGISTRY_NAMESPACE)/$(BIN_NAME):$(RELEASE_TAG)
.PHONY: build
build:
CGO_ENABLED=0 go build -trimpath -ldflags "-s -w -X github.com/redhat-openshift-ecosystem/preflight-trigger/version.commit=$(VERSION) -X github.com/redhat-openshift-ecosystem/preflight-trigger/version.version=$(RELEASE_TAG)" -o $(BIN_NAME) main.go
@ls | grep -e '^preflight-trigger$$' &> /dev/null
.PHONY: vet
vet:
go vet ./...
.PHONY: tidy
tidy:
go mod tidy
git diff --exit-code
.PHONY: fmt
fmt: gofumpt
${GOFUMPT} -l -w .
git diff --exit-code
.PHONY: lint
lint: golangci-lint ## Run golangci-lint linter checks.
$(GOLANGCI_LINT) run
.PHONY: test
test:
go test -v $$(go list ./...) \
-ldflags "-X github.com/redhat-openshift-ecosystem/preflight-trigger/version.commit=bar -X github.com/redhat-openshift-ecosystem/preflight-trigger/version.version=foo"
.PHONY: cover
cover:
go test -v \
$$(go list ./...) \
-ldflags "-X github.com/redhat-openshift-ecosystem/preflight-trigger/version.commit=bar -X github.com/redhat-openshift-ecosystem/preflight-trigger/version.version=foo" \
-race \
-cover -coverprofile=coverage.out
GOFUMPT = $(shell pwd)/bin/gofumpt
GOFUMPT_VERSION ?= v0.10.0
gofumpt: ## Download envtest-setup locally if necessary.
$(call go-install-tool,$(GOFUMPT),mvdan.cc/gofumpt@$(GOFUMPT_VERSION))
# go-get-tool will 'go get' any package $2 and install it to $1.
PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
define go-install-tool
@[ -f $(1) ] || { \
GOBIN=$(PROJECT_DIR)/bin go install $(2) ;\
}
endef
GOLANGCI_LINT = $(shell pwd)/bin/golangci-lint
GOLANGCI_LINT_VERSION ?= v2.1.6
golangci-lint: $(GOLANGCI_LINT)
$(GOLANGCI_LINT):
$(call go-install-tool,$(GOLANGCI_LINT),github.com/golangci/golangci-lint/v2/cmd/golangci-lint@$(GOLANGCI_LINT_VERSION))