From 6cd3d90d4c2537f28f4d484ee7d5f6b95e7edbf3 Mon Sep 17 00:00:00 2001 From: Tony Kelman Date: Mon, 19 Jun 2017 13:32:07 -0700 Subject: [PATCH] modernize .travis.yml the PPA is no longer recommended, `language: julia` allows testing against more versions of julia --- .travis.yml | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index cf1992f..7f7cfc5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,7 @@ -language: cpp -compiler: - - clang +language: julia +julia: + - 0.5 + - 0.6 + - nightly notifications: email: false -before_install: - - sudo add-apt-repository ppa:staticfloat/julia-deps -y - - sudo add-apt-repository ppa:staticfloat/julianightlies -y - - sudo apt-get update -qq -y - - sudo apt-get install libpcre3-dev julia -y -script: - - julia -e 'Pkg.init(); run(`ln -s $(pwd()) $(Pkg.dir())/OSC`); Pkg.resolve()' - - julia -e 'using OSC; @assert isdefined(:OSC); @assert typeof(OSC) === Module' - - julia test/runtests.jl TEST