From: Junio C Hamano Date: Sun, 7 Sep 2008 06:16:20 +0000 (-0700) Subject: Doit: build-test documentation, too. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3af0e6709cd053ae1dad602b02a15e55795b4683;p=thirdparty%2Fgit.git Doit: build-test documentation, too. --- diff --git a/Doit b/Doit index 632f22e694..f29d051b83 100755 --- a/Doit +++ b/Doit @@ -1,6 +1,6 @@ #!/bin/sh -: ${J=-j2} +: ${J=-j4} force= while case "$1" in -pedantic) M=$1 ;; @@ -50,12 +50,20 @@ do echo "** $branch" && git checkout $branch && Meta/Make $M -- $J all && - Meta/Make $M -- test && + Meta/Make $M -- $J test && Meta/Make $M -- install && + case "$branch" in + master | maint | next ) + Meta/Make $M -- doc + ;; + jch ) + Meta/Make $M -- doc install-doc + ;; + *) + : ;; + esac && Meta/Make clean || exit $? done >./:all.log 3>&2 2>&1 git checkout master - -