2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00

build: fix automated documentation build

This commit is contained in:
Qingping Hou 2016-11-24 02:23:25 -08:00
parent 8e76ed4f0b
commit 2242751d4a

View File

@ -5,11 +5,6 @@ source "${CI_DIR}/common.sh"
set +e
travis_retry make coverage
pushd koreader-*/koreader
luajit $(which luacov-coveralls) -v
popd
if [ ${TRAVIS_PULL_REQUEST} = false ] && [ ${TRAVIS_BRANCH} = 'master' ]; then
travis_retry luarocks --local install ldoc
# get deploy key for doc repo
@ -36,7 +31,12 @@ if [ ${TRAVIS_PULL_REQUEST} = false ] && [ ${TRAVIS_BRANCH} = 'master' ]; then
git -c user.name="KOReader build bot" -c user.email="non-reply@koreader.rocks" \
commit -a --amend -m 'Automated documentation build from travis-ci.'
git push -f --quiet origin gh-pages > /dev/null
echo -e "\n${ANSI_GREEN}Document update pushed."
echo -e "\n${ANSI_GREEN}Documentation update pushed."
else
echo -e "\n${ANSI_GREEN}Not on official master branch, skip document update."
echo -e "\n${ANSI_GREEN}Not on official master branch, skip documentation update."
fi
travis_retry make coverage
pushd koreader-*/koreader
luajit $(which luacov-coveralls)
popd