From b98712b9aa97f20a142ca3fcfd027c7b26642e3b Mon Sep 17 00:00:00 2001 From: Lars Schneider Date: Wed, 4 May 2016 10:38:36 +0200 Subject: 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 --- ci/test-documentation.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 ci/test-documentation.sh (limited to 'ci') 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 -- cgit v1.2.3