forked from erpc/erpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
65 lines (53 loc) · 1.45 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
.PHONY: help
help:
@echo
@echo "Usage: make [command]"
@echo
@echo "Commands:"
@echo " build Build the eRPC server"
@echo
@echo " docker-up Up docker services"
@echo " docker-down Down docker services"
@echo
@echo " fmt Format source code"
@echo " test Run unit tests"
@echo
.PHONY: setup
setup:
@go mod tidy
.PHONY: run
run:
@go run ./cmd/erpc/main.go
.PHONY: run-pprof
run-pprof:
@go run ./cmd/erpc/main.go ./cmd/erpc/pprof.go
.PHONY: run-fake-rpcs
run-fake-rpcs:
@go run ./test/cmd/main.go
.PHONY: run-k6
run-k6:
@k6 run ./test/k6/run.js
.PHONY: build
build:
@CGO_ENABLED=0 go build -ldflags="-w -s" -o ./bin/erpc-server ./cmd/erpc/main.go
@CGO_ENABLED=0 go build -ldflags="-w -s" -tags pprof -o ./bin/erpc-server-pprof ./cmd/erpc/*.go
.PHONY: test
test:
@go clean -testcache
@go test ./cmd/... -count 1 -parallel 1
@go test $$(ls -d */ | grep -v "cmd/" | grep -v "test/" | awk '{print "./" $$1 "..."}') -covermode=atomic -race -count 3 -parallel 1
.PHONY: coverage
coverage:
@go clean -testcache
@go test -coverprofile=coverage.txt -covermode=atomic $$(ls -d */ | grep -v "cmd/" | grep -v "test/" | awk '{print "./" $$1 "..."}')
@go tool cover -html=coverage.txt
.PHONY: up
up:
@docker-compose up -d --force-recreate --remove-orphans
.PHONY: down
down:
@docker-compose down
.PHONY: fmt
fmt:
@go fmt ./...
.DEFAULT_GOAL := help