Skip to content

Commit

Permalink
Add make check-manuals to makemanuals Travis test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Konovalov authored and ssiccha committed Mar 27, 2019
1 parent 33f97dd commit ebe0d6f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 2 additions & 3 deletions Makefile.rules
Original file line number Diff line number Diff line change
Expand Up @@ -754,9 +754,8 @@ clean-doc:
# Manual consistency check
check-manuals: all
$(MKDIR_P) dev/log
((cd doc/ref ; \
echo 'Read("testconsistency.g");' | $(TESTGAP) ) \
> `date -u +dev/log/check_manuals_%Y-%m-%d-%H-%M` 2>&1 )
( cd doc/ref ; echo 'Read("testconsistency.g");' | $(TESTGAP) | \
tee `date -u +../../dev/log/check_manuals_%Y-%m-%d-%H-%M` )

.PHONY: doc clean-doc manuals check-manuals

Expand Down
3 changes: 2 additions & 1 deletion doc/ref/testconsistency.g
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ Print( with, " with examples \n");
Print( without , " without examples \n");
end;
CheckDocCoverage(doc);
# Uncomment next line to add ManSections without examples to the test log
# CheckDocCoverage(doc);
QUIT_GAP( CheckManSectionTypes(doc) );
1 change: 1 addition & 0 deletions etc/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ GAPInput

makemanuals)
make doc
make check-manuals
;;

testmanuals)
Expand Down

0 comments on commit ebe0d6f

Please sign in to comment.