build_doc.sh 530 字节
Newer Older
Y
Yu Yang 已提交
1
#!/bin/bash
Y
Yi Wang 已提交
2 3 4 5 6
set -e

# Create the build directory for CMake.
mkdir -p $TRAVIS_BUILD_DIR/build
cd $TRAVIS_BUILD_DIR/build
Y
Yu Yang 已提交
7

W
wuyi05 已提交
8
# Compile Documentation only.
9 10
cmake .. -DCMAKE_BUILD_TYPE=Release -DWITH_GPU=OFF -DWITH_MKL=OFF -DWITH_DOC=ON -DWITH_STYLE_CHECK=OFF
make -j `nproc` gen_proto_py framework_py_proto
L
Luo Tao 已提交
11
make -j `nproc` copy_paddle_pybind
_青葱's avatar
_青葱 已提交
12
make -j `nproc` paddle_docs paddle_apis
Y
Yu Yang 已提交
13

L
Luo Tao 已提交
14
# check websites for broken links
L
Luo Tao 已提交
15 16
linkchecker doc/v2/en/html/index.html
linkchecker doc/v2/cn/html/index.html
17
linkchecker doc/v2/api/en/html/index.html