Skip to content

Commit

Permalink
update travis yaml to allow failures on older julia versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dysonance committed Aug 15, 2018
1 parent f5e6692 commit 9973e91
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ os:
- linux
julia:
- 0.6
- 1.0
- nightly
matrix:
allow_failures:
- julia: 0.6
- julia: nightly
notifications:
email: false
after_success:
- julia -e 'cd(Pkg.dir("Temporal")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'cd(Pkg.dir("Temporal")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'Pkg.add("Documenter")'
- julia --depwarn=no -e 'cd(Pkg.dir("Temporal")); include(joinpath("docs", "make.jl"))'
- julia -e 'using Pkg; cd(Pkg.dir("Temporal")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'using Pkg; cd(Pkg.dir("Temporal")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'using Pkg; Pkg.add("Documenter")'
- julia --depwarn=no -e 'using Pkg; cd(Pkg.dir("Temporal")); include(joinpath("docs", "make.jl"))'

0 comments on commit 9973e91

Please sign in to comment.