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:
|
2017-05-16 23:26:02 -04:00
|
|
|
- 0.6
|
2016-03-18 18:09:37 -04:00
|
|
|
notifications:
|
|
|
|
email: false
|
2013-12-14 00:12:27 -05:00
|
|
|
script:
|
2016-03-18 18:09:37 -04:00
|
|
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
2017-05-18 21:57:01 -04:00
|
|
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); Pkg.test("PortAudio")'
|