build_doc.sh 2.2 KB
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
cmake .. -DCMAKE_BUILD_TYPE=Debug -DWITH_GPU=OFF -DWITH_MKL=OFF -DWITH_DOC=ON
10
make -j `nproc` gen_proto_py
Y
Yi Wang 已提交
11
make -j `nproc` paddle_docs paddle_docs_cn
Y
Yu Yang 已提交
12

L
Luo Tao 已提交
13
# check websites for broken links
Y
Yu Yang 已提交
14 15 16
# It will be failed now!
#linkchecker doc/en/html/index.html
#linkchecker doc/cn/html/index.html
L
Luo Tao 已提交
17

Y
Yu Yang 已提交
18 19 20 21 22 23
# Parse Github URL
REPO=`git config remote.origin.url`
SSH_REPO=${REPO/https:\/\/github.com\//git@github.com:}
SHA=`git rev-parse --verify HEAD`

# Documentation branch name
W
wuyi05 已提交
24
# gh-pages branch is used for PaddlePaddle.org. The English version of
Y
Yu Yang 已提交
25 26 27 28 29 30 31 32
# documentation in `doc` directory, and the chinese version in `doc_cn`
# directory.
TARGET_BRANCH="gh-pages"

# Only deploy master branch to build latest documentation.
SOURCE_BRANCH="master"

# Clone the repo to output directory
L
Luo Tao 已提交
33
mkdir output
Y
Yu Yang 已提交
34 35 36
git clone $REPO output
cd output

Y
Yu Yang 已提交
37 38 39 40 41 42 43 44 45 46 47
function deploy_docs() {
  SOURCE_BRANCH=$1
  DIR=$2
  # If is not a Github pull request
  if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
    exit 0
  fi
  # If it is not watched branch.
  if [ "$TRAVIS_BRANCH" != "$SOURCE_BRANCH" ]; then
    return
  fi
Y
Yu Yang 已提交
48

Y
Yu Yang 已提交
49 50
  # checkout github page branch
  git checkout $TARGET_BRANCH || git checkout --orphan $TARGET_BRANCH
W
wuyi05 已提交
51

Y
Yu Yang 已提交
52 53 54 55 56
  mkdir -p ${DIR}
  # remove old docs. mv new docs.
  set +e
  rm -rf ${DIR}/doc ${DIR}/doc_cn
  set -e
D
daming-lu 已提交
57 58
  cp -r ../doc/cn/html ${DIR}/doc_cn
  cp -r ../doc/en/html ${DIR}/doc
Y
Yu Yang 已提交
59 60 61
  git add .
}

W
wuyi05 已提交
62
deploy_docs "master" "."
Y
Yu Yang 已提交
63
deploy_docs "develop" "./develop/"
Y
Yu Yang 已提交
64 65 66

# Check is there anything changed.
set +e
Y
Yu Yang 已提交
67
git diff --cached --exit-code >/dev/null
Y
Yu Yang 已提交
68 69 70 71 72 73
if [ $? -eq 0 ]; then
  echo "No changes to the output on this push; exiting."
  exit 0
fi
set -e

Y
Yu Yang 已提交
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
if [ -n $SSL_KEY ]; then  # Only push updated docs for github.com/PaddlePaddle/Paddle.
  # Commit
  git add .
  git config user.name "Travis CI"
  git config user.email "paddle-dev@baidu.com"
  git commit -m "Deploy to GitHub Pages: ${SHA}"
  # Set ssh private key
  openssl aes-256-cbc -K $SSL_KEY -iv $SSL_IV -in ../../paddle/scripts/travis/deploy_key.enc -out deploy_key -d
  chmod 600 deploy_key
  eval `ssh-agent -s`
  ssh-add deploy_key

  # Push
  git push $SSH_REPO $TARGET_BRANCH

fi