From: Lars Schneider Date: Wed, 4 May 2016 08:38:36 +0000 (+0200) Subject: travis-ci: build documentation X-Git-Tag: v2.9.0-rc0~25^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/b98712b9aa97f20a142ca3fcfd027c7b26642e3b?ds=inline;hp=--cc travis-ci: build documentation Build documentation as separate Travis CI job to check for documentation errors. Signed-off-by: Lars Schneider Signed-off-by: Junio C Hamano --- b98712b9aa97f20a142ca3fcfd027c7b26642e3b diff --git a/.travis.yml b/.travis.yml index 78e433ba71..55299bd2bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,6 +32,21 @@ env: # t9816 occasionally fails with "TAP out of sequence errors" on Travis CI OS X - GIT_SKIP_TESTS="t9810 t9816" +matrix: + include: + - env: Documentation + os: linux + compiler: clang + addons: + apt: + packages: + - asciidoc + - xmlto + before_install: + before_script: + script: ci/test-documentation.sh + after_failure: + before_install: - > case "${TRAVIS_OS_NAME:-linux}" in diff --git a/ci/test-documentation.sh b/ci/test-documentation.sh new file mode 100755 index 0000000000..579d540d32 --- /dev/null +++ b/ci/test-documentation.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# +# Perform sanity checks on documentation and build it. +# + +set -e + +make check-builtins +make check-docs +make doc + +test -s Documentation/git.html +test -s Documentation/git.xml +test -s Documentation/git.1