forked from NVIDIA/NVFlare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_doc.sh
executable file
·99 lines (87 loc) · 2.31 KB
/
build_doc.sh
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
91
92
93
94
95
96
97
98
99
#!/bin/bash
# output formatting
separator=""
blue=""
green=""
red=""
noColor=""
if [[ -t 1 ]] # stdout is a terminal
then
separator=$'--------------------------------------------------------------------------------\n'
blue="$(tput bold; tput setaf 4)"
green="$(tput bold; tput setaf 2)"
red="$(tput bold; tput setaf 1)"
noColor="$(tput sgr0)"
fi
function print_usage() {
echo "build_doc.sh [--clean] [--html]"
echo ""
echo "Build documentation"
echo ""
echo "Examples:"
echo "./build_doc.sh --html # build HTML docs."
echo "./build_doc.sh --clean # clean up python build related files."
}
function print_error_msg() {
echo "${red}Error: $1.${noColor}"
echo ""
}
function clean_py() {
find nvflare -type f -name "*.py[co]" -delete
find nvflare -type f -name "*.so" -delete
find nvflare -type d -name "__pycache__" -exec rm -r "{}" +
find . -depth -maxdepth 1 -type d -name ".eggs" -exec rm -r "{}" +
find . -depth -maxdepth 1 -type d -name "*.egg-info" -exec rm -r "{}" +
find . -depth -maxdepth 1 -type d -name "build" -exec rm -r "{}" +
find . -depth -maxdepth 1 -type d -name "dist" -exec rm -r "{}" +
find . -depth -maxdepth 1 -type d -name "__pycache__" -exec rm -r "{}" +
}
function clean_docs() {
find docs -type d -name "_build" -exec rm -r "{}" +
find docs/apidocs -type f -name "nvflare*" -delete
}
function build_html_docs() {
# pip install -e ./
pip install -r requirements-doc.txt
sphinx-apidoc --module-first -f -o docs/apidocs/ nvflare "*poc" "*private"
sphinx-build -b html docs docs/_build
}
if [ -z "$1" ]
then
print_error_msg "Too few arguments to $0"
print_usage
fi
# parse arguments
while [[ $# -gt 0 ]]
do
key="$1"
case $key in
--clean)
doClean=true
;;
--html)
doHTML=true
;;
*)
print_error_msg "Incorrect commandline provided, invalid key: $key"
print_usage
;;
esac
shift
done
if [[ $doClean == true ]]
then
echo "${separator}${blue}clean${noColor}"
clean_py
clean_docs
echo "${green}done!${noColor}"
exit
fi
if [[ $doHTML == true ]]
then
echo "${separator}${blue}html${noColor}"
clean_docs
build_html_docs
echo "${green}done!${noColor}"
exit
fi