Mercurial > hg > sonic-visualiser
annotate .travis.yml @ 1951:5665c580081a
Force older version of capnp for this older compiler on the Linux travis image
author | Chris Cannam |
---|---|
date | Thu, 09 Aug 2018 10:56:52 +0100 |
parents | ad6c20459552 |
children | 7496836f8f27 |
rev | line source |
---|---|
Chris@1727 | 1 language: |
Chris@1727 | 2 - cpp |
Chris@1727 | 3 |
Chris@1750 | 4 matrix: |
Chris@1750 | 5 include: |
Chris@1750 | 6 - os: linux |
Chris@1750 | 7 dist: trusty |
Chris@1942 | 8 sudo: required |
Chris@1750 | 9 - os: osx |
Chris@1750 | 10 osx_image: xcode9 |
Chris@1749 | 11 |
Chris@1727 | 12 addons: |
Chris@1727 | 13 apt: |
Chris@1727 | 14 packages: |
Chris@1818 | 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 |
Chris@1727 | 16 |
Chris@1727 | 17 before_install: |
Chris@1751 | 18 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; fi |
Chris@1727 | 19 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install polyml ; fi |
Chris@1727 | 20 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi |
Chris@1727 | 21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then export PATH=$PATH:/usr/local/opt/qt5/bin ; fi |
Chris@1727 | 22 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) |
Chris@1951 | 23 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ( cd ../capnproto ; git checkout v0.6.1 ) ; fi |
Chris@1727 | 24 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) |
Chris@1727 | 25 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) |
Chris@1730 | 26 |
Chris@1730 | 27 before_script: |
Chris@1808 | 28 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./configure ; else ./repoint install && qmake -r sonic-visualiser.pro ; fi |
Chris@1730 | 29 |
Chris@1727 | 30 script: |
Chris@1730 | 31 - make -j3 |
Chris@1883 | 32 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./deploy/linux/deploy-appimage.sh ; fi |