diff --git a/.travis.yml b/.travis.yml index ea6e4283..317c1213 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 @@ -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