aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 5785de589012a85c68d4482971bb1b939ecc82d5 (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
language: c
sudo: required
dist: trusty

compiler:
  - gcc
  - clang

addons: &addons
  apt:
    packages: &packages
      - libzmq3-dev
      - libzmq3
      - libfaad-dev
      - libfaad2
      - automake

script:
  - |
    pushd /tmp
    git clone https://github.com/Opendigitalradio/ka9q-fec.git
    cd ka9q-fec
    mkdir build
    cd build
    cmake ..
    make
    sudo make install
    popd
  - |
    ./bootstrap.sh
    CC=clang CXX=clang++ ./configure
    make
  - |
    ./bootstrap.sh
    ./configure
    make