diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
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 |