-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathMakefile
30 lines (24 loc) · 983 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
# default task since it's first
.PHONY: all
all: build lint test
.PHONY: build
build:
go build -o kubectl-resource_capacity main.go
.PHONY: lint
lint: golangci-lint
$(GOLANGCI_LINT) run --fix
.PHONY: test
test:
go test -v ./...
## Location to install dependencies to
LOCALBIN ?= $(shell pwd)/bin
$(LOCALBIN):
mkdir -p $(LOCALBIN)
# keep version in sync with .github/workflows/golangci-lint.yaml
GOLANGCI_LINT ?= $(LOCALBIN)/golangci-lint
GOLANGCI_LINT_VERSION ?= 1.61.0
.PHONY: golangci-lint
golangci-lint: $(LOCALBIN) ## Download golangci-lint (replace existing if incorrect version). Should only be used locally, not in CI.
@(test -f $(GOLANGCI_LINT) && $(GOLANGCI_LINT) --version | grep " $(GOLANGCI_LINT_VERSION) " >/dev/null) || \
(rm -f $(GOLANGCI_LINT) && echo "Installing $(GOLANGCI_LINT) $(GOLANGCI_LINT_VERSION)" && \
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(LOCALBIN) -d v$(GOLANGCI_LINT_VERSION))