aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-09-17 15:06:08 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-09-17 15:06:08 +0200
commite2edbaeee5d593a24bc97d8210e9a0d525996274 (patch)
treec573338cfa37da9c3b8f807670715ebaf7dfeb03 /.travis.yml
parenteb1182eb8760131c591f6b8932a8694849c18e3c (diff)
parent33706e0aea432bafe6b2f49e248192b595761f82 (diff)
downloadODR-SourceCompanion-e2edbaeee5d593a24bc97d8210e9a0d525996274.tar.gz
ODR-SourceCompanion-e2edbaeee5d593a24bc97d8210e9a0d525996274.tar.bz2
ODR-SourceCompanion-e2edbaeee5d593a24bc97d8210e9a0d525996274.zip
Merge branch 'next' into padsocket
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml47
1 files changed, 47 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..3fd0017
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,47 @@
+language: c++
+
+matrix:
+ include:
+ - env: CONF=""
+ os: osx
+ osx_image: xcode11
+ compiler: clang
+
+ - env: CONF=""
+ os: linux
+ arch: amd64
+ dist: bionic
+ sudo: required
+ compiler: gcc
+ addons: &linuxaddons
+ apt:
+ sources: &sources
+ - sourceline: 'ppa:ubuntu-toolchain-r/test'
+ packages: &packages
+ - libzmq3-dev
+ - libzmq5
+ - libfdk-aac-dev
+ - automake
+ - libtool
+ - g++-9
+
+before_install:
+ - |
+ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
+ brew update
+ brew install automake || true
+ brew install zeromq || true
+ brew install fdk-aac || true
+ fi
+
+script:
+ - |
+ ./bootstrap
+ if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then
+ export CC=gcc-9
+ export CXX=g++-9
+ fi
+ ./configure $CONF
+ make
+
+