From 6b63cc71c52d02d99d788dcbcb2bb7ee3317e27c Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Fri, 4 Jan 2019 10:48:51 +0100 Subject: [PATCH] Add julia 1.1 to .travis.yml, submit coverage from 1.1. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8da1cb6..529071b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ os: - osx julia: - 1.0 + - 1.1 - nightly # matrix: # allow_failures: @@ -14,7 +15,7 @@ branches: - master - /^v\d+\.\d+(\.\d+)?(-\S*)?$/ 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(); using Coverage; Codecov.submit(Codecov.process_folder())'; fi