blob: 31be35e6a81c42ef0486493c2d4967b3420c9630 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
language: c++
matrix:
include:
# Clang on OSX
# Sadly, OutputUHD still needs clock_gettime() even if UHD is available
# in homebrew
- env: MATRIX_EVAL="" CONF="--disable-output-uhd"
os: osx
osx_image: xcode9.1
compiler: clang
# GCC and clang builds on Linux
- env: MATRIX_EVAL="CC=gcc-6 CXX=g++-6" CONF="--disable-zeromq --disable-output-uhd"
os: linux
dist: trusty
sudo: required
compiler: gcc
addons: &linuxaddons
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
- env: MATRIX_EVAL="CC=gcc-6 CXX=g++-6" CONF="--disable-output-uhd --enable-output-raw"
compiler: gcc
addons: *linuxaddons
- env: MATRIX_EVAL="CC=gcc-6 CXX=g++-6" CONF="--disable-output-uhd --disable-native"
compiler: gcc
addons: *linuxaddons
# Travis sets CC and CXX accordingly
- env: MATRIX_EVAL="" CONF="--disable-output-uhd"
compiler: clang
addons: &linuxclang40
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-4.0
packages:
- libzmq3-dev
- libzmq3
- automake
- libtool
- libboost1.55-all-dev
- libcurl4-openssl-dev
- libfftw3-dev
# libuhd-dev is not allowed
- clang-4.0
before_install:
- eval "${MATRIX_EVAL}"
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install fftw boost zeromq automake curl; fi
script:
- |
./bootstrap.sh
./configure $CONF
make
|