fc5bb244ca
The Travis CI container-based apt whitelist only includes the specific linux-headers-3.13.0-40-generic package, not the generic linux-headers-generic package. Change-Id: I475908bc66194e08bf14861ada0897c06a1c7108 Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
24 lines
451 B
YAML
24 lines
451 B
YAML
language: c
|
|
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libcunit1-dev
|
|
- libaio-dev
|
|
- libssl-dev
|
|
- linux-headers-3.13.0-40-generic
|
|
|
|
before_script:
|
|
- wget http://fast.dpdk.org/rel/dpdk-16.07.tar.xz
|
|
- tar xf dpdk-16.07.tar.xz
|
|
- pushd dpdk-16.07 && make install T=x86_64-native-linuxapp-$CC DESTDIR=. && popd
|
|
- export DPDK_DIR=$PWD/dpdk-16.07/x86_64-native-linuxapp-$CC
|
|
|
|
script: ./unittest.sh
|