-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
88 lines (66 loc) · 2.55 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
78
79
80
81
82
83
84
85
86
87
88
#!/usr/bin/make -f
# Default target
.DEFAULT_GOAL := all
all: tidy bindings format lint test
MODULES := $(shell find . -type f -name 'go.mod' -exec dirname {} \;)
########################################################
# Building #
########################################################
# Generate solidity bindings for the Pyth EVM contracts
bindings:
@echo "Reading the contracts build artifacts from bindings/abis/"
cd bindings && go generate ./...
generate: bindings
###############################################################################
### Linting ###
###############################################################################
format:
@$(MAKE) golangci-fix
lint:
@$(MAKE) golangci gosec
#################
# golangci-lint #
#################
golangci-install:
@echo "--> Installing golangci-lint latest"
@go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
golangci:
@$(MAKE) golangci-install
@echo "--> Running linter"
@go list -f '{{.Dir}}/...' -m | xargs go run github.com/golangci/golangci-lint/cmd/golangci-lint run --config ./.golangci.yml --timeout=10m --concurrency 8
golangci-fix:
@$(MAKE) golangci-install
@echo "--> Running linter"
@go list -f '{{.Dir}}/...' -m | xargs go run github.com/golangci/golangci-lint/cmd/golangci-lint run --config ./.golangci.yml --timeout=10m --fix --concurrency 8
#################
# gosec #
#################
gosec-install:
@echo "--> Installing gosec latest"
@go install github.com/securego/gosec/v2/cmd/gosec@latest
gosec:
@$(MAKE) gosec-install
@echo "--> Running gosec"
@gosec -exclude-generated ./...
########################################################
# Testing #
########################################################
install-ginkgo:
@echo "Installing ginkgo..."
@go install github.com/onsi/ginkgo/v2/ginkgo@latest
test:
@$(MAKE) install-ginkgo
@ginkgo -r --vv --randomize-all --fail-on-pending -trace ./...
test-cover:
@export GOCOVERDIR=$(shell pwd)
@$(MAKE) install-ginkgo
@ginkgo -r --vv --randomize-all --fail-on-pending --trace \
--cover --coverprofile "coverage-go.txt" --covermode atomic ./...
########################################################
# Dependency #
########################################################
tidy: |
@for module in $(MODULES); do \
echo "Running go mod tidy in $$module"; \
(cd $$module && go mod tidy) || exit 1; \
done