From af7a6779a56b830357cd05ac1f27c4c947201f86 Mon Sep 17 00:00:00 2001 From: Matti Pastell Date: Mon, 13 Aug 2018 18:13:15 +0300 Subject: [PATCH] Fix appveyor config (#138) --- appveyor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 52aecc7..a930e94 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,7 @@ environment: matrix: - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.7/julia-0.7-latest-win64.exe" + - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/1.0/julia-1.0-latest-win64.exe" branches: only: @@ -26,7 +27,7 @@ build_script: # Need to convert from shallow to complete for Pkg.clone to work - IF EXIST .git\shallow (git fetch --unshallow) #- C:\projects\julia\bin\julia -e "ENV[\"PYTHON\"]=\"\"; Pkg.add(\"PyPlot\")" - - C:\projects\julia\bin\julia -e "using Pkg; Pkg.build("Weave")" + - C:\projects\julia\bin\julia -e "using Pkg; Pkg.clone(pwd(), \"Weave\"); Pkg.build(\"Weave\")" test_script: - - C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"Weave\")" + - C:\projects\julia\bin\julia --check-bounds=yes -e "using Pkg; Pkg.test(\"Weave\")"