-
Notifications
You must be signed in to change notification settings - Fork 6
/
Makefile
42 lines (29 loc) · 1.27 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
GOBASE=$(shell pwd)
GOBIN=$(GOBASE)/bin
GOPACKAGES = $(shell go list ./pkg/... && go list ./internal/... && go list ./cmd/...)
dependencies:
go mod download
generate:
go generate -x $(GOPACKAGES)
test: dependencies
@go test -v $(GOPACKAGES)
race: dependencies
@go test -race $(GOPACKAGES)
coverage:
@go test -coverprofile cover.out $(GOPACKAGES) && \
go test github.com/smartcontractkit/chainlink-automation/pkg/v3/... -coverprofile coverV3.out -covermode count && \
go tool cover -func=coverV3.out | grep total | grep -Eo '[0-9]+\.[0-9]+'
benchmark: dependencies fmt
@go test $(GOPACKAGES) -bench=. -benchmem -run=^#
parallel: dependencies fmt
@go test github.com/smartcontractkit/chainlink-automation/internal/keepers -bench=BenchmarkCacheParallelism -benchtime 20s -mutexprofile mutex.out -run=^#
simulator: dependencies fmt
go build -o $(GOBIN)/simulator ./cmd/simulator/*.go || exit
fmt:
gofmt -w .
default: build
.PHONY: lint
lint: ## Run golangci-lint for all issues.
[ -d "./golangci-lint" ] || mkdir ./golangci-lint && \
docker run --rm -v $(shell pwd):/app -w /app golangci/golangci-lint:v1.56.2 golangci-lint run --max-issues-per-linter 0 --max-same-issues 0 > ./golangci-lint/$(shell date +%Y-%m-%d_%H:%M:%S).txt
.PHONY: dependencies test fmt benchmark simulate