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

compiler:
  - gcc

addons: &addons
  apt:
    sources: &sources
      - ubuntu-toolchain-r-test
    packages: &packages
      - libzmq3-dev
      - libzmq3
      - libboost1.55-all-dev
      - libfaad-dev
      - libfaad2
      - automake
      - g++-6

script:
  - |
    ./bootstrap.sh
    CC=gcc-6 CXX=g++-6 ./configure
    make
  - |
    ./bootstrap.sh
    ./configure
    make
  - |
    wget http://downloads.sourceforge.net/faac/faad2-2.7.tar.bz2
    tar -f faad2-2.7.tar.bz2 -x
    cd faad2-2.7
    ./configure
    make
    cd ..
    make -f Makefile.faadalyse