- Extend travis script to test psio and netmap versions as well.

master
Asim Jamshed 2018-06-06 11:37:47 -04:00
parent c5d23052c7
commit 361053e36b
4 changed files with 13 additions and 1 deletions

5
.buildtest_netmap.sh Normal file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
autoreconf -ivf
./configure --enable-netmap
make

5
.buildtest_psio.sh Normal file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
autoreconf -ivf
./configure --with-psio-lib=`echo $PWD`/io_engine
make

View File

@ -43,4 +43,6 @@ install:
- sudo apt-get install libgmp3-dev
script:
- bash .buildtest.sh
- bash .buildtest_dpdk.sh
- bash .buildtest_psio.sh
- bash .buildtest_netmap.sh