We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cd7d42 commit 1d42134Copy full SHA for 1d42134
.travis.yml
@@ -3,9 +3,15 @@ python:
3
4
script:
5
- 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
9
- |
10
[ -z "`doxygen doxyfile_options 2>&1`" ]
11
- 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
15
16
[ -z '`find -name "*.a" -and -not -name "lib*.a"`' ]
17
- make -C events/equeue test clean
0 commit comments