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