PortAudio.jl/.travis.yml

30 lines
650 B
YAML
Raw Normal View History

# Documentation: http://docs.travis-ci.com/user/languages/julia/
language: julia
os:
- linux
- osx
2018-08-16 18:47:11 +02:00
sudo: required
julia:
2017-05-17 05:26:02 +02:00
- 0.6
2018-08-16 18:41:35 +02:00
- 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
notifications:
email: false
script:
- 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())'