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