-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
90 lines (67 loc) · 1.07 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
.DEFAULT_GOAL := build
.PHONY: build
build: lint test
@hack/do.sh build
.PHONY: build-all
build-all:
@hack/do.sh build -a
.PHONY: clean
clean:
@hack/do.sh clean
.PHONY: fmt
fmt:
@hack/do.sh fmt
.PHONY: lint
lint:
@hack/do.sh lint
.PHONY: gen
gen:
@hack/do.sh gen
.PHONY: lint-more
lint-more:
@hack/do.sh lint_more
.PHONY: test
test:
@hack/do.sh test
.PHONY: act
act:
hack/do.sh act
.PHONY: docs
docs:
@hack/do.sh docs
.PHONY: completions
completions:
@hack/do.sh completions
.PHONY: vet
vet:
@hack/do.sh vet
.PHONY: race
race:
@hack/do.sh race
.PHONY: bench
bench:
@hack/do.sh bench
.PHONY: build-nolint
build-nolint:
@NOLINT=1 hack/do.sh build
.PHONY: release-patch
release-patch:
@hack/do.sh release patch
.PHONY: release-minor
release-minor:
@hack/do.sh release minor
.PHONY: install
install:
@hack/do.sh install
.PHONY: docker-build
docker-build:
@hack/do.sh docker_build
.PHONY: docker-build-push
docker-push:
@hack/do.sh docker_push
.PHONY: dev-deps
dev-deps:
@hack/do.sh dev_deps
.PHONY: check-imports
check-imports:
@hack/do.sh check_imports