mirror of https://github.com/ARMmbed/mbed-os.git
Document odd bits of the travis config
parent
8cd7d42fd0
commit
1d42134eba
|
@ -3,9 +3,15 @@ python:
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- mkdir BUILD && doxygen doxyfile_options
|
- 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`" ]
|
[ -z "`doxygen doxyfile_options 2>&1`" ]
|
||||||
- find -name "*.a" -and -not -name "lib*.a"
|
- 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"`' ]
|
[ -z '`find -name "*.a" -and -not -name "lib*.a"`' ]
|
||||||
- make -C events/equeue test clean
|
- make -C events/equeue test clean
|
||||||
|
|
Loading…
Reference in New Issue