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 05f8f96ae606eecfff48e3544885d43b9f541f3c (commit) via e971043e275307634472b35ce394326216c3e301 (commit) from af5205809e3921ea0c4db5771ea1da5d2f0eaaf5 (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 05f8f96ae606eecfff48e3544885d43b9f541f3c Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Tue Feb 14 23:32:00 2017 +0300
travis: catch doxygen errors
make doxygen-doc does not return negative code on errors. Do it manually.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Mike Holmes mike.holmes@linaro.org
diff --git a/.travis.yml b/.travis.yml index e2937e0..83ec65f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -118,7 +118,9 @@ script:
- ./bootstrap - ./configure - - make doxygen-doc +# doxygen does not trap on warnings, check for them here. + - make doxygen-doc |tee doxygen.log + - fgrep -rvq warning ./doxygen.log - make distcheck
- ./bootstrap
commit e971043e275307634472b35ce394326216c3e301 Author: Andriy Berestovskyy Andriy.Berestovskyy@cavium.com Date: Fri Feb 17 11:41:28 2017 +0100
doc: fix k.org links in CONTRIBUTING
Fix links for kernel.org code style document.
Signed-off-by: Andriy Berestovskyy Andriy.Berestovskyy@cavium.com Reviewed-and-tested-by: Bill Fischofer bill.fischofer@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/CONTRIBUTING b/CONTRIBUTING index a81fd8d..ab77fd3 100644 --- a/CONTRIBUTING +++ b/CONTRIBUTING @@ -13,7 +13,8 @@ the contributing requirements for ODP
== New Development
-ODP code shall be written with the kernel coding style https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documen... Coding Style] +ODP code shall be written with the kernel coding style +https://github.com/torvalds/linux/blob/master/Documentation/process/coding-s... Coding Style]
ODP code shall be documented using the doxygen style described in the "Documenting the code" section. @@ -38,7 +39,8 @@ Signed-off-by: tag line a copy of the description follows: Signed-off-by: this is a developer's certification that he or she has the right to submit the patch for inclusion into the [project]. It is an agreement to the Developer's Certificate of Origin, the full text of -which can be found in https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/Documen... Patches] +which can be found in +https://github.com/torvalds/linux/blob/master/Documentation/process/submitti... Patches]
Code without a proper signoff cannot be merged into the mainline.
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 4 +++- CONTRIBUTING | 6 ++++-- 2 files changed, 7 insertions(+), 3 deletions(-)
hooks/post-receive