Skip to content

Commit 3af0e67

Browse files
committed
Doit: build-test documentation, too.
1 parent 2ff3538 commit 3af0e67

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

Doit

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

3-
: ${J=-j2}
3+
: ${J=-j4}
44
force=
55
while case "$1" in
66
-pedantic) M=$1 ;;
@@ -50,12 +50,20 @@ do
5050
echo "** $branch" &&
5151
git checkout $branch &&
5252
Meta/Make $M -- $J all &&
53-
Meta/Make $M -- test &&
53+
Meta/Make $M -- $J test &&
5454
Meta/Make $M -- install &&
55+
case "$branch" in
56+
master | maint | next )
57+
Meta/Make $M -- doc
58+
;;
59+
jch )
60+
Meta/Make $M -- doc install-doc
61+
;;
62+
*)
63+
: ;;
64+
esac &&
5565
Meta/Make clean || exit $?
5666

5767
done >./:all.log 3>&2 2>&1
5868

5969
git checkout master
60-
61-

0 commit comments

Comments
 (0)