forked from hacheigriega/relayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
107 lines (80 loc) · 3.3 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
VERSION := $(shell echo $(shell git describe --tags) | sed 's/^v//')
COMMIT := $(shell git log -1 --format='%H')
SDKCOMMIT := $(shell go list -m -u -f '{{.Version}}' github.com/cosmos/cosmos-sdk)
GAIA_VERSION := v4.0.0
AKASH_VERSION := jack/update-sdk
WASMD_VERSION := v0.14.1
GOPATH := $(shell go env GOPATH)
GOBIN := $(GOPATH)/bin
all: ci-lint install
###############################################################################
# Build / Install
###############################################################################
LD_FLAGS = -X github.com/cosmos/relayer/cmd.Version=$(VERSION) \
-X github.com/cosmos/relayer/cmd.Commit=$(COMMIT) \
-X github.com/cosmos/relayer/cmd.SDKCommit=$(SDKCOMMIT) \
-X github.com/cosmos/relayer/cmd.GaiaCommit=$(GAIACOMMIT)
BUILD_FLAGS := -ldflags '$(LD_FLAGS)'
build: go.sum
ifeq ($(OS),Windows_NT)
@echo "building rly binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o build/rly.exe main.go
else
@echo "building rly binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o build/rly main.go
endif
build-zip: go.sum
@echo "building rly binaries for windows, mac and linux"
@GOOS=linux GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) -o build/linux-amd64-rly main.go
@GOOS=darwin GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) -o build/darwin-amd64-rly main.go
@GOOS=windows GOARCH=amd64 go build -mod=readonly $(BUILD_FLAGS) -o build/windows-amd64-rly.exe main.go
@tar -czvf release.tar.gz ./build
# Compile the relayer as a shared library to be linked into another program
compile-clib:
go build -v -mod=readonly -buildmode=c-shared -o librelayer.so ./clib
install: go.sum
@echo "installing rly binary..."
@go build -mod=readonly $(BUILD_FLAGS) -o $(GOBIN)/rly main.go
###############################################################################
# Tests / CI
###############################################################################
test:
@TEST_DEBUG=true go test -mod=readonly -v ./test/...
test-gaia:
@TEST_DEBUG=true go test -mod=readonly -v ./test/... -run TestGaia*
test-akash:
@TEST_DEBUG=true go test -mod=readonly -v ./test/... -run TestAkash*
coverage:
@echo "viewing test coverage..."
@go tool cover --html=coverage.out
lint:
@golangci-lint run
@find . -name '*.go' -type f -not -path "*.git*" | xargs gofmt -d -s
@go mod verify
.PHONY: install build lint coverage clean
###############################################################################
# Chain Code Downloads
###############################################################################
get-gaia:
@mkdir -p ./chain-code/
@git clone --branch $(GAIA_VERSION) [email protected]:cosmos/gaia.git ./chain-code/gaia
build-gaia:
@./scripts/build-gaia
build-akash:
@./scripts/build-akash
get-akash:
@mkdir -p ./chain-code/
@git clone --branch $(AKASH_VERSION) [email protected]:ovrclk/akash.git ./chain-code/akash
get-chains: get-gaia get-akash get-wasmd
get-wasmd:
@mkdir -p ./chain-code/
@git clone --branch $(WASMD_VERSION) [email protected]:CosmWasm/wasmd.git ./chain-code/wasmd
build-wasmd:
@./scripts/build-wasmd
delete-chains:
@echo "Removing the ./chain-code/ directory..."
@rm -rf ./chain-code
check-swagger:
which swagger || (GO111MODULE=off go get -u github.com/go-swagger/go-swagger/cmd/swagger)
update-swagger-docs: check-swagger
swagger generate spec -o ./docs/swagger-ui/swagger.yaml