Browse Source

Run CI on Julia 1.4.

pull/95/head
Fredrik Ekre 6 years ago
parent
commit
57862cf534
  1. 2
      .appveyor.yml
  2. 2
      .github/workflows/docs.yml
  3. 6
      .travis.yml

2
.appveyor.yml

@ -1,6 +1,6 @@
environment: environment:
matrix: matrix:
- julia_version: 1.3 - julia_version: 1.4
# - julia_version: latest # - julia_version: latest
platform: platform:

2
.github/workflows/docs.yml

@ -13,7 +13,7 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
julia-version: [1.3.1] julia-version: [1.4]
julia-arch: [x86] julia-arch: [x86]
os: [ubuntu-latest] os: [ubuntu-latest]
steps: steps:

6
.travis.yml

@ -5,21 +5,21 @@ os:
- osx - osx
julia: julia:
- 1.0 - 1.0
- 1.3 - 1.4
- nightly - 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.3 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then - if [[ $TRAVIS_JULIA_VERSION = 1.4 ]] && [[ $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.3 # julia: 1.4
# 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