Mercurial > hg > piper-cpp
comparison .travis.yml @ 150:bf8e3e7dd7de
Move some things around, and add overall test script
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 20 Jan 2017 17:45:54 +0000 |
parents | |
children | 255403a4b321 |
comparison
equal
deleted
inserted
replaced
149:70bf40743d6a | 150:bf8e3e7dd7de |
---|---|
1 dist: | |
2 - trusty | |
3 | |
4 language: | |
5 - cpp | |
6 | |
7 sudo: | |
8 - false | |
9 | |
10 os: | |
11 - linux | |
12 - osx | |
13 | |
14 addons: | |
15 apt: | |
16 packages: | |
17 - qt5-default | |
18 | |
19 before_install: | |
20 - ( cd ../ ; hg clone https://code.soundsoftware.ac.uk/hg/vamp-plugin-sdk ) | |
21 - ( cd ../vamp-plugin-sdk ; ./configure && make sdkstatic ) | |
22 - ( cd ../ ; git clone https://github.com/sandstorm-io/capnproto ) | |
23 - ( cd ../capnproto/c++ ; ./setup-autotools.sh && autoreconf -i ) | |
24 - ( cd ../capnproto/c++ ; ./configure && make && sudo make install ) | |
25 - if [[ "$TRAVIS_OS_NAME" = "osx" ]] ; then brew install qt5 ; fi | |
26 | |
27 install: | |
28 - sudo pip install jsonschema | |
29 | |
30 script: | |
31 - ./test.sh | |
32 |