summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 5398066b6c2bd913ca13bbe6cbbef54c5408fb03 (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
language: c

os:
  - linux
  - osx

compiler:
  - gcc
  - clang

env:
  - BUILD_SYSTEM=AUTOTOOLS
  - BUILD_SYSTEM=CMAKE

addons:
  apt:
    packages:
    - libogg-dev

install:
  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew bundle; fi

script:
  - if [[ "$BUILD_SYSTEM" == "AUTOTOOLS" ]] ; then ./autogen.sh && ./configure && make -j2 V=1 distcheck; fi
  - if [[ "$BUILD_SYSTEM" == "CMAKE" ]] ; then mkdir build && pushd build && cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release .. && cmake --build . && popd; fi