Use Painless Security signing key
[freeradius.git] / .travis.yml
index f9520c8..2844efe 100644 (file)
@@ -11,7 +11,7 @@ env:
     - DO_BUILD=yes LIBS_OPTIONAL=no LIBS_SHARED=yes BUILD_CFLAGS="-DWITH_EVAL_DEBUG"
     - DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes BUILD_CFLAGS="-DWITH_EVAL_DEBUG"
     - DO_BUILD=yes LIBS_OPTIONAL=yes LIBS_SHARED=yes BUILD_CFLAGS="-DWITH_EVAL_DEBUG -O2 -g3"
-#    - DO_BUILD=no
+    - DO_BUILD=no
 addons:
   coverity_scan:
     project:
@@ -31,8 +31,10 @@ addons:
       - debhelper
       - devscripts
       - dh-make
+      - doxygen
       - fakeroot
       - gdb
+      - graphviz
       - lintian
       - pbuilder
       - python-dev
@@ -82,6 +84,6 @@ before_script:
   - if [ "${DO_BUILD}" = 'yes' -a "${COVERITY_SCAN_BRANCH}" != 1 -a ${CC} = 'clang' ]; then make -j8 scan && [ "$(find build/plist/ -name *.html)" = '' ]; fi
 script:
   - if [ "${DO_BUILD}" = 'yes' -a "${COVERITY_SCAN_BRANCH}" != 1 ]; then make travis-test; fi
-  - if [ "${DO_BUILD}" = 'no' ]; then make deb; fi
+#  - if [ "${DO_BUILD}" = 'no' ]; then make deb; fi
 # Build the doxygen documentation
-  - if [ "${DO_BUILD}" = 'no' ]; then doxygen doc/source/DoxyFile | tee build/doxygen.log && [ test -n "$(cat doxygen.log)" ]; fi
+  - if [ "${DO_BUILD}" = 'no' ]; then cd doc/source; doxygen 3>&1 1>&2 2>&3 | grep -iv '^warning:' | tee doxygen_stderr.log && [ ! -n "$(cat doxygen_stderr.log)" ]; fi