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 32b94edb4961a3ac1a2e5c90f65ee3f118852151 (commit) via 9420b7953a05f2759524234a26e7e2a774a23769 (commit) via 622103adf9b6d8e73e86c751469ee2523f4dd952 (commit) from 981b778400a726121400dd4535f3cc2006d4ac67 (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 32b94edb4961a3ac1a2e5c90f65ee3f118852151 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Tue Feb 14 23:31:59 2017 +0300
travis: clang 3.8
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 8a99005..e2937e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -46,8 +46,11 @@ matrix: - compiler: clang addons: apt: + sources: + - ubuntu-toolchain-r-test + - llvm-toolchain-precise-3.8 packages: - - clang + - clang-3.8
before_install: - echo 1000 | sudo tee /proc/sys/vm/nr_hugepages @@ -60,6 +63,7 @@ before_install: - sudo pip install coverage - gem install asciidoctor - PATH=${PATH//:./node_modules/.bin/} + - if [ "$CC" = "clang" ]; then export CXX="clang++-3.8" CC="clang-3.8" LD="clang-3.8"; fi
# Install cunit for the validation tests because distro version is too old and fails C99 compile - sudo apt-get remove libcunit1-dev libcunit1
commit 9420b7953a05f2759524234a26e7e2a774a23769 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Tue Feb 14 23:31:58 2017 +0300
travis: switch to ubuntu trusty
ubuntu trusty has updated doxygen 1.8.4 which is the same stable version 1.8 which is described in DEPENDANCIES file. Now doxygen do not generate any warnings. Compiler version stays the same 4.8 for gcc.
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 66248b4..8a99005 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@
language: c sudo: required +dist: trusty env: global: # COVERITY_SCAN_TOKEN @@ -34,13 +35,13 @@ env:
matrix: include: - - compiler: gcc-4.8 + - compiler: gcc addons: apt: sources: - ubuntu-toolchain-r-test packages: - - gcc-4.8 + - gcc env: MY_CF="-O0 -coverage" MY_LDF="--coverage" DOCOV=1 - compiler: clang addons: @@ -61,6 +62,7 @@ before_install: - PATH=${PATH//:./node_modules/.bin/}
# Install cunit for the validation tests because distro version is too old and fails C99 compile + - sudo apt-get remove libcunit1-dev libcunit1 - export CUNIT_VERSION=2.1-3 - curl -sSOL https://github.com/Linaro/libcunit/releases/download/%24%7BCUNIT_VERSION%7D/... - tar -jxf *.bz2 @@ -124,7 +126,7 @@ script: - sudo rm -rf $KSRC
after_success: - - if [ -n "$DOCOV" ]; then find . -type f -iname '*.[ch]' -not -path ".git/*" -execdir gcov-4.8 {} ; ; bash <(curl -s https://codecov.io/bash) -X coveragepy; fi + - if [ -n "$DOCOV" ]; then find . -type f -iname '*.[ch]' -not -path ".git/*" -execdir gcov {} ; ; bash <(curl -s https://codecov.io/bash) -X coveragepy; fi
addons: coverity_scan:
commit 622103adf9b6d8e73e86c751469ee2523f4dd952 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Wed Feb 15 20:19:20 2017 +0300
travis: mirror cunit on github
because of cunit fails to download from sourceforge.net it's reasonable place source to github.
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 9544ec8..66248b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -62,7 +62,7 @@ before_install:
# Install cunit for the validation tests because distro version is too old and fails C99 compile - export CUNIT_VERSION=2.1-3 - - curl -sSOL http://sourceforge.net/projects/cunit/files/CUnit/%24%7BCUNIT_VERSION%7D/CUn... + - curl -sSOL https://github.com/Linaro/libcunit/releases/download/%24%7BCUNIT_VERSION%7D/... - tar -jxf *.bz2 - cd CUnit* - ./bootstrap
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-)
hooks/post-receive