From a0e209e046c8ad650525714c2117f26024a8ec44 Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Sat, 15 Feb 2020 12:04:32 -0800 Subject: [PATCH] Update travis config (#378) --- .travis.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 59cc07ba..dd2cbcd7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,15 +2,19 @@ language: julia os: - linux + - windows - osx julia: - 1.0 - - 1.1 - - 1.2 - 1.3 + - 1.4 - nightly +arch: + - x86 + - x64 + branches: only: - master @@ -19,16 +23,18 @@ branches: notifications: email: false +codecov: true + jobs: include: - stage: "Documentation" - julia: 1.1 + julia: 1.3 os: linux script: - julia --project=docs/ -e 'using Pkg; Pkg.instantiate(); Pkg.build()' - julia --project=docs/ docs/make.jl name: "HTML" after_success: skip - -after_success: - - julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())' + exclude: + - os: osx + arch: x86