summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2017-08-04 20:48:44 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2017-08-04 20:48:44 +0200
commitfe0c8e9f09e8562ba919661b8246351f4eb0a03c (patch)
tree42cef2715d0ddba558dd5a8ae85ac5f9e058b767 /.travis.yml
parent0c96ac35b3d6758a556959b37ee2316357e0ae0c (diff)
parentfcc6b39a136349870357ace9e431ff0e437f46d4 (diff)
downloaddabmod-fe0c8e9f09e8562ba919661b8246351f4eb0a03c.tar.gz
dabmod-fe0c8e9f09e8562ba919661b8246351f4eb0a03c.tar.bz2
dabmod-fe0c8e9f09e8562ba919661b8246351f4eb0a03c.zip
Merge branch 'next' into next_memless
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 10 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index ede7851..2bd4ad6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,6 +4,8 @@ dist: trusty
addons: &addons
apt:
+ sources: &sources
+ - ubuntu-toolchain-r-test
packages: &packages
- libzmq3-dev
- libzmq3
@@ -13,17 +15,22 @@ addons: &addons
- libcurl4-openssl-dev
- libfftw3-dev
# libuhd-dev is not allowed
+ - g++-6
compiler:
- - clang
+ - gcc
script:
- |
./bootstrap.sh
- CC=clang CXX=clang++ ./configure --disable-zeromq --disable-output-uhd
+ CC=gcc-6 CXX=g++-6 ./configure --disable-zeromq --disable-output-uhd
make
- |
./bootstrap.sh
- CC=clang CXX=clang++ ./configure --disable-output-uhd
+ CC=gcc-6 CXX=g++-6 ./configure --disable-output-uhd
+ make
+ - |
+ ./bootstrap.sh
+ CC=gcc-6 CXX=g++-6 ./configure --disable-output-uhd --disable-native
make