[docs] Fix up build, really
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 30 Dec 2015 15:15:36 +0000 (16:15 +0100)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 30 Dec 2015 15:15:36 +0000 (16:15 +0100)
.ci/deploy-docs.sh
.travis.yml

index 0395597..73f6530 100755 (executable)
@@ -1,13 +1,12 @@
+#!/bin/bash
 
-set -o errexit -o nounset
 set -x
+set -o errexit -o nounset
 
-if test "$TRAVIS_OS_NAME" != "linux" -o "$CC" != "gcc" -o "$TRAVIS_SECURE_ENV_VARS" != "true"; then exit; fi
-
-BRANCH="$(TRAVIS_BRANCH)"
+BRANCH="$TRAVIS_BRANCH"
 if test "x$BRANCH" != xmaster; then exit; fi
 
-TAG="$(git describe --exact-match --match "[0-9]*" HEAD 2>/dev/null)"
+TAG="$(git describe --exact-match --match "[0-9]*" HEAD 2>/dev/null || true)"
 
 DOCSDIR=build-docs
 REVISION=$(git rev-parse --short HEAD)
index 7c155a7..886c210 100644 (file)
@@ -30,7 +30,7 @@ script:
   - make check
   - if [ "$TRAVIS_OS_NAME" == "linux" -a "$CC" == "gcc" ]; then rm -f src/.libs/NONE.gcov; touch src/NONE; coveralls -e docs; fi
 after_success:
-  - bash .ci/deploy-docs.sh
+  - if [ "$TRAVIS_OS_NAME" == "linux" -a "$CC" == "gcc" -a "$TRAVIS_SECURE_ENV_VARS" == "true" ]; then bash .ci/deploy-docs.sh; fi
 notifications:
   irc: "irc.freenode.org#harfbuzz"
   email: harfbuzz@lists.freedesktop.org