blob: 5f079074a62f70e5072c24e82374c970fca0c887 [file] [log] [blame]
Khaled Hosnyb7891992015-12-26 06:35:08 +04001
Khaled Hosny22b07782015-12-14 23:33:51 +04002set -o errexit -o nounset
3
Behdad Esfahbodf3a05112015-12-30 15:45:43 +01004if [ "$TRAVIS_OS_NAME" != "linux" -o "$CC" != "gcc" -o "$TRAVIS_SECURE_ENV_VARS" != "true" ]; then
5 exit
Khaled Hosny22b07782015-12-14 23:33:51 +04006fi
Behdad Esfahbodf3a05112015-12-30 15:45:43 +01007
8BRANCH="$(TRAVIS_BRANCH)"
9TAG="$(git describe --exact-match --match "[0-9]*" HEAD 2>/dev/null)"
10
11if [ "x$TAG" == x ]; then
12 REVISION=$(git rev-parse --short HEAD)
13else
14 REVISION=$TAG
15fi
16
17DOCSDIR=build-docs
18
19rm -rf $DOCSDIR || exit
20mkdir $DOCSDIR
21cd $DOCSDIR
22
23cp ../docs/html/* .
24
25git init
26git config user.name "Travis CI"
27git config user.email "travis@harfbuzz.org"
28git remote add upstream "https://$GH_TOKEN@github.com/$TRAVIS_REPO_SLUG.git"
29git fetch upstream
30git reset upstream/gh-pages
31
32touch .
33git add -A .
34git commit -m "Rebuild docs for $REVISION"
35git push -q upstream HEAD:gh-pages