Browse Source

Run CI on more Julia version, build docs on Julia 1.2.

pull/76/head
Fredrik Ekre 6 years ago
parent
commit
f1ae0b659e
  1. 2
      .appveyor.yml
  2. 9
      .travis.yml

2
.appveyor.yml

@ -1,6 +1,6 @@
environment: environment:
matrix: matrix:
- julia_version: 1.0 - julia_version: 1.2
# - julia_version: latest # - julia_version: latest
platform: platform:

9
.travis.yml

@ -5,25 +5,22 @@ os:
- osx - osx
julia: julia:
- 1.0 - 1.0
- 1.1
- 1.2 - 1.2
- 1.3
- nightly - nightly
# matrix:
# allow_failures:
# - julia: nightly
branches: branches:
only: only:
- master - master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ - /^v\d+\.\d+(\.\d+)?(-\S*)?$/
after_success: after_success:
- if [[ $TRAVIS_JULIA_VERSION = 1.1 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then - if [[ $TRAVIS_JULIA_VERSION = 1.2 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then
julia --project=test/coverage -e 'using Pkg; Pkg.instantiate(); julia --project=test/coverage -e 'using Pkg; Pkg.instantiate();
using Coverage; Codecov.submit(Codecov.process_folder())'; using Coverage; Codecov.submit(Codecov.process_folder())';
fi fi
jobs: jobs:
include: include:
- stage: Documentation - stage: Documentation
julia: 1.1 julia: 1.2
os: linux os: linux
script: script:
- julia --project=docs -e 'using Pkg; Pkg.instantiate()' - julia --project=docs -e 'using Pkg; Pkg.instantiate()'

Loading…
Cancel
Save