Browse Source

Add julia 1.1 to .travis.yml, submit coverage from 1.1. (#51)

pull/52/head
Fredrik Ekre 7 years ago committed by GitHub
parent
commit
4eb20eea5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      .travis.yml

3
.travis.yml

@ -5,6 +5,7 @@ os:
- osx - osx
julia: julia:
- 1.0 - 1.0
- 1.1
- nightly - nightly
# matrix: # matrix:
# allow_failures: # allow_failures:
@ -14,7 +15,7 @@ branches:
- master - master
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/ - /^v\d+\.\d+(\.\d+)?(-\S*)?$/
after_success: after_success:
- if [[ $TRAVIS_JULIA_VERSION = 1.0 ]] && [[ $TRAVIS_OS_NAME = linux ]]; then - if [[ $TRAVIS_JULIA_VERSION = 1.1 ]] && [[ $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

Loading…
Cancel
Save