Message ID | 1506369616-26859-2-git-send-email-odpbot@yandex.ru |
---|---|
State | New |
Headers | show |
Series | [v1,1/1] travis: correct doxygen warning capture | expand |
diff --git a/.travis.yml b/.travis.yml index a9ae219dc..395feb0ef 100644 --- a/.travis.yml +++ b/.travis.yml @@ -249,11 +249,17 @@ jobs: fi - export PATH=$HOME/doxygen-install/bin:$PATH - # doxygen does not trap on warnings, check for them here. - ./bootstrap - ./configure + # doxygen does not trap on warnings, check for them here. - make doxygen-doc 2>&1 |tee doxygen.log - - fgrep -rq warning ./doxygen.log && false + - | + fgrep -rq warning ./test.log + if [ $? -eq 0 ]; then + false + else + true + fi - stage: test env: TEST=checkpatch compiler: gcc