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-03-20 06:24:23 +01: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-03-18 23:09:37 +01:00
|
|
|
- nightly
|
|
|
|
notifications:
|
|
|
|
email: false
|
2013-12-14 06:12:27 +01:00
|
|
|
script:
|
2016-03-18 23:09:37 +01: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 10:15:13 +02:00
|
|
|
after_success:
|
2016-03-20 06:24:23 +01:00
|
|
|
- julia -e 'cd(Pkg.dir("PortAudio")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
|