2016-03-18 23:09:37 +01:00
# Documentation: http://docs.travis-ci.com/user/languages/julia/
2015-11-11 22:31:09 +01:00
language : julia
2016-03-18 23:09:37 +01:00
os :
- linux
- osx
2016-08-09 05:57:26 +02:00
sudo : required
2015-11-11 22:31:09 +01:00
julia :
2016-03-18 23:09:37 +01:00
# - release
2015-11-11 22:31:09 +01:00
- 0.4
2016-08-09 05:39:46 +02:00
- 0.5
2016-03-18 23:09:37 +01:00
notifications :
email : false
2013-12-14 06:12:27 +01:00
script :
2016-08-09 05:39:46 +02:00
# we can't actually run on travis, so just make sure it's installable
2016-03-18 23:09:37 +01:00
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
2016-08-09 06:09:50 +02:00
- julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); Pkg.checkout("Compat"); Pkg.checkout("RingBuffers"); Pkg.checkout("SampledSignals"); using PortAudio'