erigon-pulse/Makefile

79 lines
2.6 KiB
Makefile
Raw Normal View History

GOBINREL = build/bin
GOBIN = $(CURDIR)/$(GOBINREL)
2021-07-01 15:35:06 +00:00
GOBUILD = env GO111MODULE=on go build -trimpath
OS = $(shell uname -s)
ARCH = $(shell uname -m)
ifeq ($(OS),Darwin)
PROTOC_OS := osx
endif
ifeq ($(OS),Linux)
PROTOC_OS = linux
endif
PROTOC_INCLUDE = build/include/google
default: gen
2021-09-17 02:56:04 +00:00
gen: grpc mocks
$(GOBINREL):
mkdir -p "$(GOBIN)"
2021-07-01 15:35:06 +00:00
$(GOBINREL)/protoc: | $(GOBINREL)
2021-07-01 15:35:06 +00:00
$(eval PROTOC_TMP := $(shell mktemp -d))
curl -sSL https://github.com/protocolbuffers/protobuf/releases/download/v3.20.1/protoc-3.20.1-$(PROTOC_OS)-$(ARCH).zip -o "$(PROTOC_TMP)/protoc.zip"
cd "$(PROTOC_TMP)" && unzip protoc.zip
cp "$(PROTOC_TMP)/bin/protoc" "$(GOBIN)"
mkdir -p "$(PROTOC_INCLUDE)"
cp -R "$(PROTOC_TMP)/include/google/" "$(PROTOC_INCLUDE)"
rm -rf "$(PROTOC_TMP)"
# 'protoc-gen-go' tool generates proto messages
$(GOBINREL)/protoc-gen-go: | $(GOBINREL)
$(GOBUILD) -o "$(GOBIN)/protoc-gen-go" google.golang.org/protobuf/cmd/protoc-gen-go
# 'protoc-gen-go-grpc' tool generates grpc services
$(GOBINREL)/protoc-gen-go-grpc: | $(GOBINREL)
$(GOBUILD) -o "$(GOBIN)/protoc-gen-go-grpc" google.golang.org/grpc/cmd/protoc-gen-go-grpc
2021-07-01 15:35:06 +00:00
protoc-all: $(GOBINREL)/protoc $(PROTOC_INCLUDE) $(GOBINREL)/protoc-gen-go $(GOBINREL)/protoc-gen-go-grpc
protoc-clean:
rm -f "$(GOBIN)/protoc"*
rm -rf "$(PROTOC_INCLUDE)"
grpc: protoc-all
PATH="$(GOBIN):$(PATH)" protoc --proto_path=interfaces --go_out=gointerfaces -I=$(PROTOC_INCLUDE) \
2021-07-01 15:35:06 +00:00
types/types.proto
PATH="$(GOBIN):$(PATH)" protoc --proto_path=interfaces --go_out=gointerfaces --go-grpc_out=gointerfaces -I=$(PROTOC_INCLUDE) \
2021-07-01 15:44:00 +00:00
--go_opt=Mtypes/types.proto=github.com/ledgerwatch/erigon-lib/gointerfaces/types \
--go-grpc_opt=Mtypes/types.proto=github.com/ledgerwatch/erigon-lib/gointerfaces/types \
2021-07-01 15:35:06 +00:00
p2psentry/sentry.proto \
remote/kv.proto remote/ethbackend.proto \
downloader/downloader.proto \
2021-07-01 15:35:06 +00:00
consensus_engine/consensus.proto \
starknet/cairo.proto \
2021-07-01 15:35:06 +00:00
testing/testing.proto \
txpool/txpool.proto txpool/mining.proto
$(GOBINREL)/moq: | $(GOBINREL)
$(GOBUILD) -o "$(GOBIN)/moq" github.com/matryer/moq
mocks: $(GOBINREL)/moq
PATH="$(GOBIN):$(PATH)" go generate ./...
lint: $(GOBINREL)/golangci-lint
@"$(GOBIN)/golangci-lint" run --config ./.golangci.yml
2021-09-17 02:56:04 +00:00
# force re-make golangci-lint
lintci-deps: lintci-deps-clean $(GOBINREL)/golangci-lint
lintci-deps-clean: golangci-lint-clean
# download and build golangci-lint (https://golangci-lint.run)
$(GOBINREL)/golangci-lint: | $(GOBINREL)
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$(GOBIN)" v1.46.2
golangci-lint-clean:
rm -f "$(GOBIN)/golangci-lint"