build_doc.sh 2.1 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_MKLDNN=OFF -DWITH_MKLML=OFF -DWITH_DOC=ON
Y
Yi Wang 已提交
10
make -j `nproc` paddle_docs paddle_docs_cn
Y
Yu Yang 已提交
11

L
Luo Tao 已提交
12
# check websites for broken links
L
Luo Tao 已提交
13 14
linkchecker doc/en/html/index.html
linkchecker doc/cn/html/index.html
L
Luo Tao 已提交
15

Y
Yu Yang 已提交
16 17 18 19 20 21
# 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 已提交
22
# gh-pages branch is used for PaddlePaddle.org. The English version of
Y
Yu Yang 已提交
23 24 25 26 27 28 29 30
# 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 已提交
31
mkdir output
Y
Yu Yang 已提交
32 33 34
git clone $REPO output
cd output

Y
Yu Yang 已提交
35 36 37 38 39 40 41 42 43 44 45
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 已提交
46

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

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

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

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

Y
Yu Yang 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
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