comparison .travis.yml @ 1984:015416e3a298 import-audio-data

Merge from default branch
author Chris Cannam
date Tue, 04 Sep 2018 14:10:47 +0100
parents 34cb861994a2
children 60d78294ea3a
comparison
equal deleted inserted replaced
1912:a28cab68eac6 1984:015416e3a298
1 language: 1 language:
2 - cpp 2 - cpp
3 3
4 matrix: 4 matrix:
5 include: 5 include:
6 - os: osx
7 osx_image: xcode9
6 - os: linux 8 - os: linux
7 dist: trusty 9 dist: trusty
8 sudo: false 10 sudo: required
9 - os: osx 11 addons:
10 osx_image: xcode9 12 apt:
11 13 sources:
12 addons: 14 - ubuntu-toolchain-r-test
13 apt: 15 packages:
14 packages: 16 - libbz2-dev libfftw3-dev libfishsound1-dev libid3tag0-dev liblo-dev liblrdf0-dev libmad0-dev liboggz2-dev libpulse-dev libsamplerate-dev libsndfile-dev libsord-dev libxml2-utils portaudio19-dev qt5-default libqt5svg5-dev raptor-utils librubberband-dev autoconf libtool git mlton
15 - libbz2-dev libfftw3-dev libfishsound1-dev libid3tag0-dev liblo-dev liblrdf0-dev libmad0-dev liboggz2-dev libpulse-dev libsamplerate-dev libsndfile-dev libsord-dev libxml2-utils portaudio19-dev qt5-default libqt5svg5-dev raptor-utils librubberband-dev autoconf libtool git mlton
16 17
17 before_install: 18 before_install:
18 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; fi 19 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; fi
19 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install polyml ; fi 20 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install polyml ; fi
20 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi 21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi
21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi 22 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi
22 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) 23 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto )
23 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) 24 - ( cd ../capnproto/ ; git checkout v0.6.1 )
25 - ( cd ../capnproto/c++ ; autoreconf -i )
24 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) 26 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install )
25 27
26 before_script: 28 before_script:
27 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./configure ; else ./repoint install && qmake -r sonic-visualiser.pro ; fi 29 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./configure ; else ./repoint install && qmake -r sonic-visualiser.pro ; fi
28 30
29 script: 31 script:
30 - make -j3 32 - make -j3
31 33 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./deploy/linux/deploy-appimage.sh ; fi