comparison .travis.yml @ 1973:b7af36ebafe0 c++14

OK, try explicitly re-linking these here as well
author Chris Cannam
date Fri, 31 Aug 2018 12:02:52 +0100
parents be5496ec5f97
children 18fb91db5311
comparison
equal deleted inserted replaced
1972:be5496ec5f97 1973:b7af36ebafe0
12 apt: 12 apt:
13 sources: 13 sources:
14 - ubuntu-toolchain-r-test 14 - ubuntu-toolchain-r-test
15 packages: 15 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 g++-4.9 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 g++-4.9
17 env:
18 - CC=gcc-4.9
19 - CXX=g++-4.9
20 17
21 before_install: 18 before_install:
22 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; fi 19 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew update ; fi
23 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install polyml ; fi 20 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install polyml ; fi
24 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi 21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi
25 - 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
23 - if [[ "$TRAVIS_OS_NAME" = "linux" ]]; then for x in g++ gcc gcc-ar gcc-nm gcc-ranlib ; do sudo ln -sf /usr/bin/$x-4.9 /usr/bin/$x ; ln -sf /usr/bin/x86_64-linux-gnu-gcc-$x-4.9 /usr/bin/x86_64-linux-gnu-gcc-$x ; done; fi
26 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) 24 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto )
27 - ( cd ../capnproto/c++ ; autoreconf -i ) 25 - ( cd ../capnproto/c++ ; autoreconf -i )
28 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) 26 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install )
29 27
30 before_script: 28 before_script: