File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 35
35
# t9816 occasionally fails with "TAP out of sequence errors" on Travis CI OS X
36
36
- GIT_SKIP_TESTS="t9810 t9816"
37
37
38
+ matrix :
39
+ include :
40
+ - env : Documentation
41
+ os : linux
42
+ compiler : clang
43
+ addons :
44
+ apt :
45
+ packages :
46
+ - asciidoc
47
+ - xmlto
48
+ before_install :
49
+ before_script :
50
+ script : ci/test-documentation.sh
51
+ after_failure :
52
+
38
53
before_install :
39
54
- >
40
55
case "${TRAVIS_OS_NAME:-linux}" in
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ #
3
+ # Perform sanity checks on documentation and build it.
4
+ #
5
+
6
+ set -e
7
+
8
+ make check-builtins
9
+ make check-docs
10
+ make doc
11
+
12
+ test -s Documentation/git.html
13
+ test -s Documentation/git.xml
14
+ test -s Documentation/git.1
You can’t perform that action at this time.
0 commit comments