diff mbox series

[v1,2/3] travis: expand testing with varios configure options

Message ID 1495782008-5146-3-git-send-email-odpbot@yandex.ru
State Superseded
Headers show
Series [v1,1/3] travis: split build into separate stages | expand

Commit Message

Github ODP bot May 26, 2017, 7 a.m. UTC
From: Maxim Uvarov <maxim.uvarov@linaro.org>


[DES: check all compiler vs options combinations]

Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>

Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov@linaro.org>

---
/** Email created from pull request 42 (lumag:stages)
 ** https://github.com/Linaro/odp/pull/42
 ** Patch: https://github.com/Linaro/odp/pull/42.patch
 ** Base sha: 472d34cc0fd2b5f96277b1799583ab6c45375d40
 ** Merge commit sha: 4308c4223e9828b6818fbdaf8d6236666995e077
 **/
 .travis.yml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/.travis.yml b/.travis.yml
index e22d6ab6..f091a2d4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -55,6 +55,12 @@  compiler:
         - gcc
         - clang-3.8
 
+env:
+        - CONF=""
+        - CONF="--disable-abi-compat"
+        - CONF="--enable-schedule-sp"
+        - CONF="--enable-schedule-iquery"
+
 install:
         - echo 1000 | sudo tee /proc/sys/vm/nr_hugepages
         - sudo mkdir -p /mnt/huge
@@ -101,7 +107,7 @@  install:
 
 script:
         - ./bootstrap
-        - ./configure --prefix=$HOME/odp-install  --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} --with-netmap-path=`pwd`/netmap
+        - ./configure --prefix=$HOME/odp-install  --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} --with-netmap-path=`pwd`/netmap $CONF
         - make -j $(nproc)
         - sudo LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" make check
         - make install