14 lines
375 B
YAML
14 lines
375 B
YAML
# Documentation: http://docs.travis-ci.com/user/languages/julia/
|
|
language: julia
|
|
os:
|
|
- linux
|
|
- osx
|
|
sudo: required
|
|
julia:
|
|
- 0.6
|
|
notifications:
|
|
email: false
|
|
script:
|
|
# we can't actually run on travis, so just make sure it's installable
|
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); using PortAudio'
|