Skip to content

Commit 1d42134

Browse files
committed
Document odd bits of the travis config
1 parent 8cd7d42 commit 1d42134

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ python:
33

44
script:
55
- mkdir BUILD && doxygen doxyfile_options
6+
# Assert that the Doxygen build produced no warnings.
7+
# The strange command below asserts that the Doxygen command had an
8+
# output of zero length
69
- |
710
[ -z "`doxygen doxyfile_options 2>&1`" ]
811
- find -name "*.a" -and -not -name "lib*.a"
12+
# Assert that all binary libraries are named correctly
13+
# The strange command below asserts that there are exactly 0 libraries that do
14+
# not start with lib
915
- |
1016
[ -z '`find -name "*.a" -and -not -name "lib*.a"`' ]
1117
- make -C events/equeue test clean

0 commit comments

Comments
 (0)