annotate .travis.yml @ 444:5dceaccd925f

First cut at Travis build
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 20 May 2019 16:30:19 +0100
parents
children 9d82002526e3
rev   line source
c@444 1 dist:
c@444 2 - xenial
c@444 3
c@444 4 language:
c@444 5 - cpp
c@444 6
c@444 7 sudo:
c@444 8 - false
c@444 9
c@444 10 os:
c@444 11 - linux
c@444 12
c@444 13 addons:
c@444 14 apt:
c@444 15 packages:
c@444 16 - wget
c@444 17 - libsndfile-dev
c@444 18 - libboost-all-dev
c@444 19
c@444 20 script:
c@444 21 - make -f build/linux/Makefile.linux64
c@444 22 - ( cd tests ; make )
c@444 23