fix matrix&jobs

pull/279/head
Shuhei Kadowaki 2020-03-04 19:37:36 +09:00
parent 2aa7cb7ca5
commit c020fea642
2 changed files with 8 additions and 9 deletions

View File

@ -4,14 +4,7 @@ julia:
- 1.0 - 1.0
- 1.3 - 1.3
- 1.4 - 1.4
- nightly
matrix:
allow_failures:
- julia: 1.4
- julia: nightly
notifications:
email: false
script: script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
@ -19,7 +12,11 @@ script:
- xvfb-run julia -e 'using Pkg; Pkg.test("Weave", coverage=true)' - xvfb-run julia -e 'using Pkg; Pkg.test("Weave", coverage=true)'
after_success: after_success:
- julia -e 'using Pkg; 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())'
jobs: jobs:
allow_failures:
- julia: 1.4
- julia: nightly
include: include:
- stage: "Documentation" - stage: "Documentation"
julia: 1.3 julia: 1.3
@ -29,3 +26,6 @@ jobs:
Pkg.instantiate()' Pkg.instantiate()'
- julia --project=doc/ doc/make.jl - julia --project=doc/ doc/make.jl
after_success: skip after_success: skip
notifications:
email: false

View File

@ -19,6 +19,5 @@ include("make_examples.jl")
deploydocs( deploydocs(
repo = "github.com/mpastell/Weave.jl.git", repo = "github.com/mpastell/Weave.jl.git",
target = "build",
push_preview = true, push_preview = true,
) )