Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI Update #1340

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,41 @@
language: julia

os:
- linux

julia:
- 1.0
- 1.2
- nightly

matrix:
fast_finish: true
allow_failures:
- julia: nightly

notifications:
email: false
before_script:
- julia -e 'using Pkg; Pkg.add(PackageSpec(name="Compose", rev="master"))'

codecov: true

jobs:
include:
- stage: "Documentation"
julia: 1.0
julia: 1.2
os: linux
# disable global before_script in order not to install Compose twice
before_script:
script:
- |
julia --color=yes --project=docs/ -e'
using Pkg
Pkg.add(PackageSpec(name="Compose", rev="master"))
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
include("docs/make.jl")
'
- julia --color=yes --project=docs -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- travis_wait julia --color=yes --project=docs --color=yes docs/make.jl
after_success: skip
- stage: "Edge"
os: linux
julia: 1.2
matrix:
fast_finish: true
allow_failures:
- julia: 1.2
before_script:
- julia --color=yes -e 'using Pkg; Pkg.add(PackageSpec(name="Compose", rev="master"))'
after_success: skip