Document odd bits of the travis config

pull/4516/head
Jimmy Brisson 2017-06-09 10:01:57 -05:00
parent 8cd7d42fd0
commit 1d42134eba
1 changed files with 6 additions and 0 deletions

View File

@ -3,9 +3,15 @@ python:
script:
- mkdir BUILD && doxygen doxyfile_options
# Assert that the Doxygen build produced no warnings.
# The strange command below asserts that the Doxygen command had an
# output of zero length
- |
[ -z "`doxygen doxyfile_options 2>&1`" ]
- find -name "*.a" -and -not -name "lib*.a"
# Assert that all binary libraries are named correctly
# The strange command below asserts that there are exactly 0 libraries that do
# not start with lib
- |
[ -z '`find -name "*.a" -and -not -name "lib*.a"`' ]
- make -C events/equeue test clean