From 322d08344d337cc8df45c2244146c7e21e1df1d3 Mon Sep 17 00:00:00 2001 From: Miles Lubin Date: Tue, 28 Aug 2018 10:21:58 -0400 Subject: [PATCH] Run travis on 1.0 (allowed failure) (#219) --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index ec2e0dd..fe8f24e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,10 @@ os: julia: - 0.6 - 0.7 + - 1.0 +matrix: + allow_failures: + - julia: 1.0 notifications: email: false sudo: false @@ -14,10 +18,6 @@ addons: - liblapack-dev - libgmp-dev - libglpk-dev -script: - - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - julia -e 'Pkg.clone(pwd())' - - julia -e 'Pkg.test("MathProgBase")' after_success: - julia -e 'Pkg.add("Documenter")' - julia -e 'cd(Pkg.dir("MathProgBase")); include(joinpath("docs", "make.jl"))'