From d19dcc3445b05213da5f33e82c3c250de4ab4d1a Mon Sep 17 00:00:00 2001 From: Zachary Sunberg Date: Wed, 12 Sep 2018 17:41:52 -0700 Subject: [PATCH] updated travis to use 0.7 and 1.0 --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index d3e2079..daedcb7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,15 +4,16 @@ os: - linux # - osx julia: - - 0.6 + - 0.7 + - 1.0 notifications: email: false # uncomment the following lines to override the default test script -script: - - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - - julia -e 'Pkg.clone(pwd()); Pkg.build("ParticleFilters")' - # - julia -e 'include(Pkg.dir("ParticleFilters", "test", "build.jl"))' - - julia -e 'Pkg.test("ParticleFilters"; coverage=true)' +# script: +# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi +# - julia -e 'Pkg.clone(pwd()); Pkg.build("ParticleFilters")' +# # - julia -e 'include(Pkg.dir("ParticleFilters", "test", "build.jl"))' +# - julia -e 'Pkg.test("ParticleFilters"; coverage=true)' after_success: # push coverage results to Coveralls - julia -e 'cd(Pkg.dir("ParticleFilters")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'