blob: ecd00c1a48a254fd169fbd0b2de4af26ac83497a (
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
|
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
- gcc-5
- g++-5
compiler:
- gcc
script:
- |
./bootstrap.sh
CC=gcc-5 CXX=g++-5 ./configure --disable-output-edi
make
- |
./bootstrap.sh
CC=gcc-5 CXX=g++-5 ./configure
make
- |
./bootstrap.sh
CC=gcc-5 CXX=g++-5 ./configure --enable-input-prbs --enable-input-test --enable-input-udp --enable-output-raw
make
|