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
|
2015-11-11 16:31:09 -05:00
|
|
|
julia:
|
2016-03-18 18:09:37 -04:00
|
|
|
# - release
|
2015-11-11 16:31:09 -05:00
|
|
|
- 0.4
|
2016-03-18 18:09:37 -04:00
|
|
|
- nightly
|
|
|
|
notifications:
|
|
|
|
email: false
|
2013-12-14 00:12:27 -05:00
|
|
|
script:
|
2016-03-18 18:09:37 -04:00
|
|
|
# SampleTypes is unregistered so clone it for testing
|
|
|
|
- julia -e 'Pkg.clone("https://github.com/JuliaAudio/SampleTypes.jl.git")'
|
|
|
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
|
|
|
- julia -e 'Pkg.clone(pwd()); Pkg.build("PortAudio"); Pkg.test("PortAudio"; coverage=true)'
|
2014-08-22 04:15:13 -04:00
|
|
|
after_success:
|
2016-03-18 18:09:37 -04:00
|
|
|
- julia -e 'cd(Pkg.dir("PortAudio")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
|