numam-spdk/.travis.yml
Daniel Verkamp 2d0246da83 travis: disable vhost build on Travis-CI
The virtio_scsi.h header is not available in the version of
linux-libc-dev shipped with Ubuntu Trusty.

Change-Id: I442f2cfc160b166b56b3c0b6f2f3ff02df971abb
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
2017-03-17 14:36:18 -07:00

33 lines
689 B
YAML

language: c
compiler:
- gcc
- clang
dist: trusty
sudo: false
addons:
apt:
packages:
- libcunit1-dev
- libaio-dev
- libssl-dev
before_script:
- export MAKEFLAGS="-j$(nproc)"
- wget http://fast.dpdk.org/rel/dpdk-17.02.tar.xz
- tar xf dpdk-17.02.tar.xz
- pushd dpdk-17.02
- make config T=x86_64-native-linuxapp-$CC
- sed -i s/CONFIG_RTE_EAL_IGB_UIO=y/CONFIG_RTE_EAL_IGB_UIO=n/ build/.config
- sed -i s/CONFIG_RTE_KNI_KMOD=y/CONFIG_RTE_KNI_KMOD=n/ build/.config
- make
- make install DESTDIR=.
- export DPDK_DIR=$PWD/usr/local/share/dpdk/x86_64-native-linuxapp-$CC
- popd
script:
- make CONFIG_WERROR=y CONFIG_VHOST=n
- ./unittest.sh