blob: 8c60a2242d2d1ce09035d8ee57e18eeb620edf81 [file] [log] [blame]
set -o errexit -o nounset
if [ "$TRAVIS_OS_NAME" == "linux" -a "$CC" == "gcc" -a "$TRAVIS_PULL_REQUEST" == "false" -a "$TRAVIS_BRANCH" == "master" ]
then
DOCSDIR=build-docs
REVISION=$(git rev-parse --short HEAD)
rm -rf $DOCSDIR || exit
mkdir $DOCSDIR
cd $DOCSDIR
cp ../docs/html/* .
git init
git config user.name "Travis CI"
git config user.email "[email protected]"
git remote add upstream "https://[email protected]/$TRAVIS_REPO_SLUG.git"
git fetch upstream
git reset upstream/gh-pages
touch .
git add -A .
git commit -m "Rebuild docs for $REVISION"
git push -q upstream HEAD:gh-pages
fi