-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathMakefile
51 lines (38 loc) · 1.05 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
GITCOMMIT := $(shell git rev-parse HEAD)
GITDATE := $(shell git show -s --format='%ct')
GITVERSION := $(shell cat package.json | jq .version)
LDFLAGSSTRING +=-X main.GitCommit=$(GITCOMMIT)
LDFLAGSSTRING +=-X main.GitDate=$(GITDATE)
LDFLAGSSTRING +=-X main.GitVersion=$(GITVERSION)
LDFLAGS := -ldflags "$(LDFLAGSSTRING)"
EDLC_ABI_ARTIFACT := ../packages/contracts/artifacts/contracts/da/BVM_EigenDataLayrChain.sol/BVM_EigenDataLayrChain.json
mt-challenger:
go mod tidy
env GO111MODULE=on go build -v $(LDFLAGS) ./cmd/mt-challenger
datalayr:
cd ../datalayr/contracts && ./compile.sh compile-el && ./compile.sh compile-dl
clean:
rm mt-challenger
test:
go test -v ./...
lint:
golangci-lint run ./...
binding:
$(eval temp := $(shell mktemp))
cat $(EDLC_ABI_ARTIFACT) \
| jq -r .bytecode > $(temp)
cat $(EDLC_ABI_ARTIFACT) \
| jq .abi \
| abigen --pkg bindings \
--abi - \
--out bindings/bvm_eigen_datalayr_chain.go \
--type BVM_EigenDataLayrChain \
--bin $(temp)
rm $(temp)
.PHONY: \
mt-challenger \
datalayr \
binding \
clean \
test \
lint