2015-11-11 22:31:09 +01:00
language : julia
2013-12-14 06:12:27 +01:00
compiler :
- clang
notifications :
2014-08-22 10:15:13 +02:00
email : spencer.f.russell@gmail.com
2015-11-11 22:31:09 +01:00
julia :
- 0.3
- 0.4
# - nightly
# Fails with:
# LoadError: ccall: could not find function jl_read_sonames
# while loading /home/travis/.julia/v0.5/AudioIO/deps/build.jl, in expression starting on line 29
2013-12-14 06:12:27 +01:00
script :
2015-11-11 22:31:09 +01:00
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
2014-07-01 04:04:20 +02:00
- julia -e 'Pkg.init()'
2014-08-26 01:11:33 +02:00
- julia -e 'Pkg.add("BinDeps"); Pkg.checkout("BinDeps")' # latest master needed for Pacman support
2014-08-28 16:09:26 +02:00
- julia -e 'Pkg.clone(pwd()); Pkg.build("AudioIO")'
2015-11-11 22:31:09 +01:00
- julia -e 'Pkg.add("FactCheck")' # add FactCheck manually because we're not using Pkg.test()
- julia --code-coverage=user test/runtests.jl # Pkg.test disables inlining when enabling coverage, which kills our allocation tests
2014-08-22 10:15:13 +02:00
after_success :
2014-08-22 10:23:10 +02:00
- if [ $JULIAVERSION = "juliareleases" ]; then julia -e 'cd(Pkg.dir("AudioIO")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'; fi