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