summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 2bd4ad64c774b5c5841bbd74b21751cbb5c41013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
language: c++
sudo: required
dist: trusty

addons: &addons
  apt:
    sources: &sources
      - ubuntu-toolchain-r-test
    packages: &packages
      - libzmq3-dev
      - libzmq3
      - automake
      - libtool
      - libboost1.55-all-dev
      - libcurl4-openssl-dev
      - libfftw3-dev
      # libuhd-dev is not allowed
      - g++-6

compiler:
  - gcc

script:
  - |
    ./bootstrap.sh
    CC=gcc-6 CXX=g++-6 ./configure --disable-zeromq --disable-output-uhd
    make
  - |
    ./bootstrap.sh
    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