diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-06-10 19:57:35 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2017-06-10 19:57:35 +0200 |
commit | 770608a1627d41ccfe9012bc6eaa9c5c48a601ff (patch) | |
tree | e1f2ee8a021effa0751876da4e6ea7205b562790 | |
parent | a57f21216cf5deb5dc30c1ab181fea91d15b0612 (diff) | |
download | etisnoop-770608a1627d41ccfe9012bc6eaa9c5c48a601ff.tar.gz etisnoop-770608a1627d41ccfe9012bc6eaa9c5c48a601ff.tar.bz2 etisnoop-770608a1627d41ccfe9012bc6eaa9c5c48a601ff.zip |
Switch travis to gcc 6
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 8d771d1..519b550 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,11 @@ dist: trusty compiler: - gcc - - clang addons: &addons apt: + sources: &sources + - ubuntu-toolchain-r-test packages: &packages - libzmq3-dev - libzmq3 @@ -15,11 +16,12 @@ addons: &addons - libfaad-dev - libfaad2 - automake + - g++-6 script: - | ./bootstrap.sh - CC=clang CXX=clang++ ./configure + CC=gcc-6 CXX=g++-6 ./configure make - | ./bootstrap.sh |