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
|
2015-11-11 22:31:09 +01:00
|
|
|
julia:
|
2017-05-17 05:26:02 +02:00
|
|
|
- 0.6
|
2018-08-16 18:41:35 +02:00
|
|
|
- 0.7
|
|
|
|
- 1.0
|
2018-06-21 09:59:43 +02:00
|
|
|
- nightly
|
2018-08-16 18:41:35 +02:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- julia: nightly
|
|
|
|
fast_finish: true
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
master
|
2016-03-18 23:09:37 +01:00
|
|
|
notifications:
|
|
|
|
email: false
|
2013-12-14 06:12:27 +01:00
|
|
|
script:
|
2016-03-18 23:09:37 +01:00
|
|
|
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
|
2018-08-16 18:41:35 +02:00
|
|
|
- julia --color=yes ci_setup.jl
|
|
|
|
- julia --color=yes --code-coverage test/runtests.jl
|
|
|
|
after_success:
|
|
|
|
- julia -e 'VERSION >= v"0.7.0-" && using Pkg;
|
|
|
|
VERSION < v"0.7.0-" && cd(Pkg.dir("PortAudio"));
|
|
|
|
Pkg.add("Coverage");
|
|
|
|
using Coverage;
|
|
|
|
Codecov.submit(process_folder())'
|