forked from unrealcv/unrealcv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild_doc.py
87 lines (71 loc) · 2.33 KB
/
build_doc.py
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
import argparse, subprocess, platform, os, shutil, webbrowser
def clean():
files = []
folders = ['_build', 'doxygen/html', 'doxygen/latex', 'doxygen/xml']
for f in files:
if os.path.isfile(f):
os.remove(f)
for f in folders:
if os.path.isdir(f):
shutil.rmtree(f)
def lfs_checkout():
import git_lfs
doc_dir = os.path.dirname(os.path.abspath(__file__))
project_dir = os.path.dirname(doc_dir)
git_lfs.fetch(project_dir)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('--build_doxygen',
action='store_true', default=False
)
parser.add_argument('--rtd',
action='store_true', default=False,
help='Simulate running on RTD server'
)
parser.add_argument('--clean',
action='store_true', default=False,
help='Remove build artifacts'
)
parser.add_argument('--rebuild',
action='store_true', default=False,
help='Rebuild all the files to see all the warnings. By default only diffs are built to save time.'
)
# build diff takes about less than 1 second
# a full rebuild takes about 5 minutes
args = parser.parse_args()
is_build_doxygen = args.build_doxygen
is_on_rtd = args.rtd
is_clean = args.clean
rebuild = args.rebuild
if is_clean:
clean()
return
if is_build_doxygen:
try:
subprocess.call(['doxygen', 'Doxyfile'])
except Exception as e:
print('Failed to run doxygen')
print(e)
env = dict(os.environ)
if is_on_rtd:
lfs_checkout() # Run this here so that it is easier to debug
env['READTHEDOCS'] = 'True'
doc_folder = os.path.dirname(os.path.realpath(__file__))
output_folder = os.path.join(doc_folder, '_build/html')
cmd = [
'sphinx-build', '-n',
'-b', 'html', # build format
doc_folder, output_folder, # input, output folder
'-j', '16', # build in parallel
]
if rebuild:
clean()
# cmd.append('-a')
print(cmd)
subprocess.call(cmd, env = env)
# subprocess.call(cmd, env = os.environ)
index_file = os.path.join(output_folder, 'index.html')
print('Open compiled html in the browser')
webbrowser.open_new('file://' + os.path.realpath(index_file))
if __name__ == '__main__':
main()