Get CI running on 0.7 (#137)

pull/138/head v0.6.0
Matti Pastell 2018-08-13 15:06:07 +03:00 committed by GitHub
parent 2508268500
commit 9aa01e4b89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 16 deletions

View File

@ -2,24 +2,17 @@
language: julia
julia:
- 0.7
- 1.0
- nightly
matrix:
allow_failures:
- julia: nightly
- julia: 1.0
notifications:
email: false
before_install:
#- 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
#- 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)'
- julia --check-bounds=yes -e 'using Pkg; Pkg.build()'
- xvfb-run julia -e 'using Pkg; Pkg.test("Weave", coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("Weave")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("Weave")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

View File

@ -1,6 +1,6 @@
name = "Weave"
uuid = "44d3d7a6-8a23-5bf8-98c5-b353f8df5ec9"
version="0.5.2"
version="0.6.0"
[deps]
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
@ -18,8 +18,8 @@ YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
[compat]
Highlights="0.3.0"
Plots="0.18.0"
Highlights = ">=0.3.0"
Plots = ">=0.19.0"
[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

View File

@ -26,7 +26,7 @@ build_script:
# Need to convert from shallow to complete for Pkg.clone to work
- IF EXIST .git\shallow (git fetch --unshallow)
#- C:\projects\julia\bin\julia -e "ENV[\"PYTHON\"]=\"\"; Pkg.add(\"PyPlot\")"
- C:\projects\julia\bin\julia -e "Pkg.clone(pwd(), \"Weave\"); versioninfo(); Pkg.build(\"Weave\")"
- C:\projects\julia\bin\julia -e "using Pkg; Pkg.build()"
test_script:
- C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"Weave\")"