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 90ac2ecbf8aec6d4f876d161b3844c199527c33e (commit) from 9b29422bde38980e66c8474546727433ce5c2995 (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 90ac2ecbf8aec6d4f876d161b3844c199527c33e Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Mon Nov 7 18:49:44 2016 +0300
travis: linux-gen: add dpdk pktio
Turn on linux-generic dpdk and pcap pktios with their validation tests.
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 0d1add3..1092cd0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ sudo: required before_install: - sudo apt-get -qq update - sudo apt-get install automake autoconf libtool libssl-dev graphviz mscgen doxygen + - sudo apt-get install libpcap-dev linux-headers-`uname -r` - gem install asciidoctor
# Install cunit for the validation tests because distro version is too old and fails C99 compile @@ -24,12 +25,25 @@ before_install: - sudo make install - cd .. - export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" - -install: - - ./bootstrap +# DPDK pktio + - TARGET=${TARGET:-"x86_64-native-linuxapp-gcc"} + - git clone http://dpdk.org/git/dpdk dpdk + - pushd dpdk + - git checkout -b bv16.07 v16.07 + - make config T=${TARGET} O=${TARGET} + - pushd ${TARGET} + - sed -ri 's,(CONFIG_RTE_LIBRTE_PMD_PCAP=).*,\1y,' .config + - popd + - make install T=${TARGET} EXTRA_CFLAGS="-fPIC" + - popd
script: - - ./configure --enable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-user-guides --enable-test-perf-proc --enable-test-example + + - ./bootstrap + - ./configure --enable-test-cpp --enable-test-vald --enable-test-helper --enable-test-perf --enable-user-guides --enable-test-perf-proc --enable-test-example --with-dpdk-path=`pwd`/dpdk/${TARGET} - make check + - git clean -f -d -x && rm -rf dpdk + - ./bootstrap + - ./configure - make doxygen-doc - make distcheck
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-)
hooks/post-receive