forked from flyteorg/flyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
32 lines (26 loc) · 889 Bytes
/
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
.PHONY: kustomize
kustomize:
bash script/kustomize.sh
.PHONY: deploy_sandbox
deploy_sandbox:
bash script/deploy.sh
# launch dockernetes and execute tests
.PHONY: end2end
end2end:
@end2end/launch_dockernetes.sh
# execute tests in the current kubernetes context
.PHONY: end2end_execute
end2end_execute:
@end2end/execute.sh
# Use this target to build the rsts directory only. In order to build the entire flyte docs, use update_ref_docs && all_docs
.PHONY: docs
docs:
@docker run -t -v `pwd`:/base lyft/docbuilder:v2.2.0 sphinx-build -E -b html /base/rsts/. /base/_build
# Builds the entire doc tree. Assumes update_ref_docs has run and that all externals rsts are in _rsts/ dir
.PHONY: all_docs
all_docs:
@./script/generate_docs.sh
# updates referenced docs from other repositories (e.g. flyteidl, flytekit)
.PHONY: update_ref_docs
update_ref_docs:
@./script/update_ref_docs.sh