Mercurial > hg > sonic-visualiser
comparison .travis.yml @ 1730:7aa88d988abb vext
Some build and CI fixes
author | Chris Cannam |
---|---|
date | Mon, 10 Jul 2017 11:54:33 +0100 |
parents | 1fb1556b74be |
children | 4ba96437f1c7 |
comparison
equal
deleted
inserted
replaced
1729:81c92307f0d3 | 1730:7aa88d988abb |
---|---|
21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi | 21 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi |
22 - 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 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) | 23 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) |
24 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) | 24 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) |
25 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) | 25 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) |
26 | 26 |
27 before_script: | |
28 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./configure ; else ./vext install && qmake -r sonic-visualiser.pro ; fi | |
29 | |
27 script: | 30 script: |
28 - if [[ "$TRAVIS_OS_NAME" = "linux" ]] ; then ./configure ; else ./vext install && qmake -r ; fi | 31 - make -j3 |
29 - make | |
30 | 32 |