This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via cbb7f52e28d2e1c20c8eac662aa6135242d072e8 (commit) via 49093654e6faa652387bc192c17b5006af0fc0b4 (commit) via f6f317fc47a0314f1077af2477fc169302953e5c (commit) from d091f2176a28b09503aef6aabbbe7d2433e3b69b (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit cbb7f52e28d2e1c20c8eac662aa6135242d072e8 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Tue Sep 19 23:23:23 2017 +0300
travis: cache doxygen
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Reviewed-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org
diff --git a/.travis.yml b/.travis.yml index 21fa9e3b..a9ae219d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,6 +60,7 @@ cache: - dpdk - netmap - $HOME/cunit-install + - $HOME/doxygen-install
env: - CONF="" @@ -237,13 +238,17 @@ jobs: install: - true script: - - wget https://github.com/doxygen/doxygen/archive/Release_1_8_13.tar.gz - - tar xpvf Release_1_8_13.tar.gz - - pushd doxygen-Release_1_8_13 - - cmake -DCMAKE_INSTALL_PREFIX=/usr . - - sudo make install - - popd + - | + if [ ! -f "$HOME/doxygen-install/bin/doxygen" ]; then + wget https://github.com/doxygen/doxygen/archive/Release_1_8_13.tar.gz + tar xpvf Release_1_8_13.tar.gz + pushd doxygen-Release_1_8_13 + cmake -DCMAKE_INSTALL_PREFIX=$HOME/doxygen-install . + make install + popd + fi
+ - export PATH=$HOME/doxygen-install/bin:$PATH # doxygen does not trap on warnings, check for them here. - ./bootstrap - ./configure
commit 49093654e6faa652387bc192c17b5006af0fc0b4 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Tue Sep 19 13:05:15 2017 +0300
travis: capture doxygen warnings right
declare more clear syntax to capture doxygen warnings.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Reviewed-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org
diff --git a/.travis.yml b/.travis.yml index 875509cf..21fa9e3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -247,8 +247,8 @@ jobs: # doxygen does not trap on warnings, check for them here. - ./bootstrap - ./configure - - make doxygen-doc |tee doxygen.log - - fgrep -rvq warning ./doxygen.log + - make doxygen-doc 2>&1 |tee doxygen.log + - fgrep -rq warning ./doxygen.log && false - stage: test env: TEST=checkpatch compiler: gcc
commit f6f317fc47a0314f1077af2477fc169302953e5c Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Mon Sep 18 19:21:11 2017 +0300
travis: doxygen 1.8.13
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Reviewed-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org
diff --git a/.travis.yml b/.travis.yml index 43141f9f..875509cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,7 +39,7 @@ addons: packages: - gcc - clang-3.8 - - automake autoconf libtool libssl-dev graphviz mscgen doxygen + - automake autoconf libtool libssl-dev graphviz mscgen - libpcap-dev # coverity_scan: # project: @@ -237,6 +237,13 @@ jobs: install: - true script: + - wget https://github.com/doxygen/doxygen/archive/Release_1_8_13.tar.gz + - tar xpvf Release_1_8_13.tar.gz + - pushd doxygen-Release_1_8_13 + - cmake -DCMAKE_INSTALL_PREFIX=/usr . + - sudo make install + - popd + # doxygen does not trap on warnings, check for them here. - ./bootstrap - ./configure
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-)
hooks/post-receive