Weave.jl/.travis.yml

26 lines
808 B
YAML
Raw Normal View History

2015-01-09 13:17:56 +01:00
language: julia
julia:
2018-07-23 18:39:48 +02:00
- 0.7
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
2018-01-02 14:54:55 +01:00
#- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
#- chmod +x miniconda.sh
#- ./miniconda.sh -b
#- export PATH=/home/travis/miniconda2/bin:$PATH
#- 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())'