1#!/usr/bin/env bash
2#
3# Perform sanity checks on documentation and build it.
4#
5
6. ${0%/*}/lib-travisci.sh
7
8gem install asciidoctor
9
10make check-builtins
11make check-docs
12
13# Build docs with AsciiDoc
14make --jobs=2 doc > >(tee stdout.log) 2> >(tee stderr.log >&2)
15! test -s stderr.log
16test -s Documentation/git.html
17test -s Documentation/git.xml
18test -s Documentation/git.1
19grep '<meta name="generator" content="AsciiDoc ' Documentation/git.html
20
21# Build docs with AsciiDoctor
22make clean
23make --jobs=2 USE_ASCIIDOCTOR=1 doc > >(tee stdout.log) 2> >(tee stderr.log >&2)
24sed '/^GIT_VERSION = / d' stderr.log
25! test -s stderr.log
26test -s Documentation/git.html
27grep '<meta name="generator" content="Asciidoctor ' Documentation/git.html