Skip to content

Commit

Permalink
Merge pull request #189 from alyst/ci_latest_julia
Browse files Browse the repository at this point in the history
* Fix Documentation build in Travis CI (clash between *matrix* and *jobs*)
* Test on latest stable 1.x Julia
  • Loading branch information
alyst authored Mar 4, 2020
2 parents c174ab6 + e86684c commit d7095c8
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,19 @@ os:
- osx
julia:
- 1.0
- 1.1
- 1
- nightly
matrix:
jobs:
allow_failures:
- julia: nightly
include:
- stage: "Documentation"
julia: 1
os: linux
script:
- julia --project=doc/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();'
- julia --project=doc/ doc/make.jl
after_success: skip
notifications:
email: false
# uncomment the following lines to override the default test script
Expand All @@ -18,13 +26,3 @@ notifications:
# - julia -e 'using Pkg; Pkg.add(pwd()); Pkg.build("Clustering"); Pkg.test("Clustering"; coverage=true)'
after_success:
- julia -e 'using Pkg, Clustering; cd(joinpath(dirname(pathof(Clustering)), "..")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

jobs:
include:
- stage: "Documentation"
julia: 1.1
os: linux
script:
- julia --project=doc/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate();'
- julia --project=doc/ doc/make.jl
after_success: skip

2 comments on commit d7095c8

@alyst
Copy link
Member Author

@alyst alyst commented on d7095c8 Mar 4, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/10526

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.13.4 -m "<description of version>" d7095c81995cdfbd1320ff3a2537251e41035bdf
git push origin v0.13.4

Please sign in to comment.