Skip to content

Commit 780bfb8

Browse files
committed
Update CI URLs to point to new caching infrastructure
1 parent 598d087 commit 780bfb8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

appveyor.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
environment:
22
matrix:
3-
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
4-
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
3+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
4+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
55

66
install:
7+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
78
# Download most recent Julia Windows binary
89
- ps: (new-object net.webclient).DownloadFile(
9-
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
10+
$env:JULIA_URL,
1011
"C:\projects\julia-binary.exe")
1112
# Run installer silently, outPut to C:\projects\julia
1213
- C:\projects\julia-binary.exe /S /D=C:\projects\julia

0 commit comments

Comments
 (0)