From bc5130bd16b28c2070257f919e67245c337ef21a Mon Sep 17 00:00:00 2001 From: "Laurent G. OSSBSS AMIS UCC" Date: Wed, 19 Dec 2018 09:57:47 +0100 Subject: [PATCH] Update .travis.yml --- .travis.yml | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3310133..34ba824 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,21 @@ -# Documentation: http://docs.travis-ci.com/user/languages/julia/ +# Documentation: http://docs.travis-ci.com/user/languages/julia/ language: julia -julia: - - 0.6 - - 1.0 - - nightly os: - linux - osx +julia: + - 0.6 + - nightly +#matrix: +# allow_failures: +#- julia_version: latest +# Work around a Travis bug +git: + depth: 999999 notifications: email: false +#script: # the default script is equivalent to the following +# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi +# - julia -e 'Pkg.clone(pwd()); Pkg.build("Example"); Pkg.test("Example"; coverage=true)'; +after_success: + - julia -e 'cd(Pkg.dir("MathPhysicalConstants")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';