From 4b6651b728b1c0f17adf3e2422ca708758b5e460 Mon Sep 17 00:00:00 2001 From: kalmar Date: Tue, 24 Jan 2017 13:44:20 +0100 Subject: [PATCH] Clone git version of Permutations.jl --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c189118..b7f0e75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,8 +10,9 @@ 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("Groups"); Pkg.test("Groups"; coverage=true)' + - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi + - julia -e 'Pkg.clone("https://github.com/scheinerman/Permutations.jl.git")' + - julia -e 'Pkg.clone(pwd()); Pkg.build("Groups"); Pkg.test("Groups"; coverage=true)' after_success: # push coverage results to Coveralls - julia -e 'cd(Pkg.dir("Groups")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'