travis-ci: parallelize documentation build
The documentation job without parallelization takes ~10min on TravisCI. With parallelization ("--jobs=2") it takes ~6min. Signed-off-by: Lars Schneider <larsxschneider@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
159e6010c2
commit
a6e6976142
@ -9,7 +9,7 @@ make check-builtins
|
|||||||
make check-docs
|
make check-docs
|
||||||
|
|
||||||
# Build docs with AsciiDoc
|
# Build docs with AsciiDoc
|
||||||
make doc
|
make --jobs=2 doc
|
||||||
test -s Documentation/git.html
|
test -s Documentation/git.html
|
||||||
test -s Documentation/git.xml
|
test -s Documentation/git.xml
|
||||||
test -s Documentation/git.1
|
test -s Documentation/git.1
|
||||||
@ -17,6 +17,6 @@ grep '<meta name="generator" content="AsciiDoc ' Documentation/git.html
|
|||||||
|
|
||||||
# Build docs with AsciiDoctor
|
# Build docs with AsciiDoctor
|
||||||
make clean
|
make clean
|
||||||
make USE_ASCIIDOCTOR=1 doc
|
make --jobs=2 USE_ASCIIDOCTOR=1 doc
|
||||||
test -s Documentation/git.html
|
test -s Documentation/git.html
|
||||||
grep '<meta name="generator" content="Asciidoctor ' Documentation/git.html
|
grep '<meta name="generator" content="Asciidoctor ' Documentation/git.html
|
||||||
|
Reference in New Issue
Block a user