diff --git a/appveyor.yml b/appveyor.yml index 2a396b5..1aa2e17 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,11 +1,12 @@ environment: matrix: - - JULIAVERSION: "stable/win64" - - JULIAVERSION: "download/win64" + - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe" + - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe" install: + - ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12" # Download most recent Julia Windows binary - - ps: (new-object net.webclient).DownloadFile($("http://status.julialang.org/"+$env:JULIAVERSION), "C:\projects\julia-binary.exe") + - ps: (new-object net.webclient).DownloadFile($env:JULIA_URL, "C:\projects\julia-binary.exe") # Run installer silently, output to C:\projects\julia - C:\projects\julia-binary.exe /S /D=C:\projects\julia - C:\projects\julia\bin\julia -e "versioninfo(); Pkg.init();"