Weave.jl/.travis.yml

24 lines
848 B
YAML
Raw Normal View History

#language: cpp
#compiler:
# - clang
language: julia
julia:
- release
2015-01-07 19:30:28 +01:00
# - nightly
notifications:
email: false
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
2015-01-09 09:06:59 +01:00
- sudo apt-get install python-matplotlib -y
#
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
#- 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")'
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Weave")'
- 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())'