From a64c86cfa066c3f4e9490df4b7f6fa6cfe3c494d Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Tue, 16 May 2017 17:23:41 -0700 Subject: [PATCH] Update CI URLs to point to new caching infrastructure --- appveyor.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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();"