forked from pixie-io/pixie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
86 lines (65 loc) · 2.64 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
# Makefile for the repo.
# This is used to help coordinate some of the tasks around the build process.
# Most of the actual build steps should be managed by Bazel.
## Bazel command to use.
BAZEL := bazel
## Dep command to use.
DEP := dep
## Minikube command to use.
MINIKUBE := minikube
## The directory to write template files to for skaffold (with respect to bazel info workspace).
SKAFFOLD_DIR := $$(bazel info workspace)/skaffold_build
.PHONY: clean
clean:
$(BAZEL) clean
rm -rf $(SKAFFOLD_DIR)
.PHONY: pristine
pristine:
$(BAZEL) clean --expunge
.PHONY: build
build: ## Run the full build (except UI).
$(BAZEL) build //...
.PHONY: test
test: ## Run all the tests (except UI).
$(BAZEL) test //...
.PHONY: dep-ensure
dep-ensure: ## Ensure that go dependencies exist.
$(DEP) ensure
gazelle-repos: Gopkg.lock
$(BAZEL) run //:gazelle -- update-repos -from_file=Gopkg.lock
gazelle: gazelle-repos ## Run gazelle to update go build rules.
$(BAZEL) run //:gazelle
go-setup: dep-ensure gazelle
dev-env-start: ## Start dev environment.
$(MINIKUBE) start --cpus 6 --memory 8192 --mount-string="$(GOPATH)/src/pixielabs.ai/pixielabs/services/certs:/certs" --mount
dev-docker-start:
@eval $$(minikube docker-env); ./scripts/run_docker.sh --extra_args="$(DEV_DOCKER_EXTRA_ARGS)"
dev-env-stop: ## Stop dev environment.
$(MINIKUBE) stop
dev-env-teardown: ## Clean up dev environment.
$(MINIKUBE) stop
$(MINIKUBE) delete
skaffold-dev: ## Run Skaffold in the dev environment.
$(BAZEL) run //templates/skaffold:skaffoldtemplate -- --build_dir $(SKAFFOLD_DIR)
skaffold-prod: ## Run Skaffold in the prod environment.
$(BAZEL) run //templates/skaffold:skaffoldtemplate -- --build_dir $(SKAFFOLD_DIR) --prod
skaffold-staging: ## Run Skaffold in the staging environment.
$(BAZEL) run //templates/skaffold:skaffoldtemplate -- --build_dir $(SKAFFOLD_DIR) --staging
help: ## Print help for targets with comments.
@echo "Usage:"
@echo " make [target...] [VAR=foo VAR2=bar...]"
@echo ""
@echo "Useful commands:"
# Grab the comment prefixed with "##" after every rule.
@grep -Eh '^[a-zA-Z._-]+:.*?## .*$$' $(MAKEFILE_LIST) |\
sort | awk 'BEGIN {FS = ":.*?## "}; {printf " $(cyan)%-30s$(term-reset) %s\n", $$1, $$2}'
@echo ""
@echo "Useful variables:"
# Grab the comment prefixed with "##" before every variable.
@awk 'BEGIN { FS = ":=" } /^## /{x = substr($$0, 4); \
getline; if (NF >= 2) printf " $(cyan)%-30s$(term-reset) %s\n", $$1, x}' $(MAKEFILE_LIST) | sort
@echo ""
@echo "Typical usage:"
@printf " $(cyan)%s$(term-reset)\n %s\n\n" \
"make build" "Run a clean build and update all the GO deps." \
"make pristine" "Delete all cached builds." \