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 c15a810b7a47f2e07200f83aa534163ca06e2b16 (commit) via aef79483e3d3e517b4cf2d71b3c22985326532c0 (commit) via f49d7bad7316ed0be807f37984908fc37da68004 (commit) from 811281a22b6274b7f41b926a9cfbe09e48a366bd (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 c15a810b7a47f2e07200f83aa534163ca06e2b16 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Wed Dec 6 18:57:33 2017 +0300
Revert "travis: temporary turn off dpdk caching"
This reverts: commit 73bc46197ec0 ("travis: temporary turn off dpdk caching") Looks like dpdk build is stable now and we can turn on caching for dpdk.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/.travis.yml b/.travis.yml index 1340ef27..a3032672 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,7 +61,7 @@ cache: ccache: true pip: true directories: - #- dpdk + - dpdk - netmap - $HOME/cunit-install - $HOME/doxygen-install
commit aef79483e3d3e517b4cf2d71b3c22985326532c0 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Wed Dec 6 18:55:15 2017 +0300
gitignore add gcov files
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/.gitignore b/.gitignore index b9c61424..93ab63a3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *.d *.gcda *.gcno +*.gcov *.la *.lo *.o
commit f49d7bad7316ed0be807f37984908fc37da68004 Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Tue Dec 5 19:25:10 2017 +0300
travis: disable ccache for codecov
Log says: odp_pktio_perf.gcno:cannot open notes file Reason is codecov does not see any generated files which were not complied due to ccache. Disabling ccache makes it work.
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org
diff --git a/.travis.yml b/.travis.yml index 976f0763..1340ef27 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ env: # By default Linaro CODECOV_TOKEN token is used. It's ok to use it to see # for individual commit validation. But you you want to track tests history # you need generated new one at https://codecov.io specific for your repo. - - CODECOV_TOKEN=8e1c0fd8-62ff-411e-a79f-5839f6662c11 + - CODECOV_TOKEN=a733c34c-5f5c-4ff1-af4b-e9f5edb1ab5e
addons: apt: @@ -245,12 +245,11 @@ jobs: - ./configure --prefix=$HOME/odp-install --enable-user-guides --with-dpdk-path=`pwd`/dpdk/${TARGET} - --with-netmap-path=`pwd`/netmap CFLAGS="-O0 - -coverage" + --with-netmap-path=`pwd`/netmap CFLAGS="-O0 -coverage" CXXFLAGS="-O0 -coverage" LDFLAGS="--coverage" --enable-debug=full --enable-helper-linux - - sudo LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" PATH=${PATH//:./node_modules/.bin/} make check + - sudo CCACHE_DISABLE=1 LD_LIBRARY_PATH="$HOME/cunit-install/$CROSS_ARCH/lib:$LD_LIBRARY_PATH" PATH=${PATH//:./node_modules/.bin/} make check - find . -type f -iname '*.[ch]' -not -path ".git/*" -execdir gcov {} ; ; bash <(curl -s https://codecov.io/bash) -X coveragepy - stage: test env: TEST=distcheck
-----------------------------------------------------------------------
Summary of changes: .gitignore | 1 + .travis.yml | 9 ++++----- 2 files changed, 5 insertions(+), 5 deletions(-)
hooks/post-receive