Weave.jl/.travis.yml

27 lines
810 B
YAML
Raw Normal View History

2015-01-09 13:17:56 +01:00
language: julia
julia:
- 0.5
2017-03-13 20:00:20 +01:00
- 0.6
2015-01-09 13:17:56 +01:00
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
before_install:
2015-01-09 13:17:56 +01:00
#- sudo apt-get update -qq -y
#- sudo apt-get install python-matplotlib -y
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
2016-04-11 18:15:39 +02:00
- export PATH=/home/travis/miniconda2/bin:$PATH
2015-01-09 13:17:56 +01:00
- conda update --yes conda
- conda install --yes matplotlib
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- 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())'