Weave.jl/.travis.yml

22 lines
828 B
YAML
Raw Normal View History

language: cpp
compiler:
- clang
notifications:
email: false
env:
matrix:
2015-01-02 12:51:02 +01:00
# - JULIAVERSION="juliareleases"
- JULIAVERSION="julianightlies"
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y
- sudo apt-get update -qq -y
2014-12-09 14:48:27 +01:00
- sudo apt-get install libpcre3-dev julia python-matplotlib -y
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
script:
2015-01-05 22:49:06 +01:00
- julia -e 'Pkg.init(); Pkg.clone(pwd()); Pkg.resolve(); Pkg.add("Winston")'
#- xvfb-run julia --code-coverage=all -e 'cd(Pkg.dir("Weave", "test")); include("winston_formats.jl")'
- xvfb-run julia -e 'Pkg.test("Weave", coverage=true)'
2014-12-06 18:25:27 +01:00
after_success:
2015-01-02 12:51:02 +01:00
- julia -e 'cd(Pkg.dir("Weave")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'