-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
88 lines (63 loc) · 3.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
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
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
BUILD_DIR ?= $(CURDIR)/build
COMMIT := $(shell git log -1 --format='%H')
###############################################################################
## Version ##
###############################################################################
ifeq (,$(VERSION))
VERSION := $(shell git describe --exact-match 2>/dev/null)
# if VERSION is empty, then populate it with branch's name and raw commit hash
ifeq (,$(VERSION))
VERSION := $(BRANCH)-$(COMMIT)
endif
endif
###############################################################################
## Build / Install ##
###############################################################################
ldflags = -X github.com/ojo-network/ethereum-api/cmd.Version=$(VERSION) \
-X github.com/ojo-network/ethereum-api/cmd.Commit=$(COMMIT)
BUILD_FLAGS := -ldflags '$(ldflags)'
build: go.sum
@echo "--> Building..."
CGO_ENABLED=0 go build -mod=readonly -o $(BUILD_DIR)/ $(BUILD_FLAGS) ./...
install: go.sum
@echo "--> Installing..."
CGO_ENABLED=0 go install -mod=readonly $(BUILD_FLAGS) ./...
.PHONY: build install
###############################################################################
## Docker ##
###############################################################################
ethereum_VERSION=20.5.0
docker-build-api:
@docker build -t ethereum-api .
docker-push-api:
@docker tag ethereum-api us-west4-docker.pkg.dev/ojo-network/ethereum-api/ethereum-api
@docker push us-west4-docker.pkg.dev/ojo-network/ethereum-api/ethereum-api
docker-build-ethereumd-e2e:
@git clone https://github.com/ethereum-labs/ethereum.git
@cd ethereum; git checkout v${ethereum_VERSION}
@DOCKER_BUILDKIT=1 docker build -t ghcr.io/ojo-network/ethereumd-e2e -f tests/e2e/docker/ethereum.Dockerfile .
@rm -rf ethereum
docker-push-ethereumd-e2e:
@docker push ghcr.io/ojo-network/ethereumd-e2e
.PHONY: docker-build-api docker-build-ethereumd-e2e docker-push-ethereumd-e2e
###############################################################################
## Tests & Linting ##
###############################################################################
PACKAGES_UNIT=$(shell go list ./... | grep -v -e '/tests/e2e')
PACKAGES_E2E=$(shell go list ./... | grep '/e2e')
test-unit:
@go test -mod=readonly -race $(PACKAGES_UNIT) -v
test-e2e:
$(MAKE) docker-build-api
@go test -mod=readonly -race $(PACKAGES_E2E) -v
.PHONY: test-unit test-e2e
lint:
@echo "--> Running linter"
@go run github.com/golangci/golangci-lint/cmd/golangci-lint run --timeout=10m
.PHONY: lint
###############################################################################
## All ##
###############################################################################
all: test-unit install
.PHONY: all