Skip to content

Commit

Permalink
Get CI running on 0.7 (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpastell committed Aug 13, 2018
1 parent 2508268 commit 9aa01e4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
17 changes: 5 additions & 12 deletions .travis.yml
Expand Up @@ -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())'
6 changes: 3 additions & 3 deletions Project.toml
@@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -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\")"

0 comments on commit 9aa01e4

Please sign in to comment.