Skip to content

Commit eb25933

Browse files
staticfloatjrevels
authored andcommitted
Update CI URLs to point to new caching infrastructure (#227)
1 parent a8e9b27 commit eb25933

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

appveyor.yml

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

55
branches:
66
only:
@@ -14,9 +14,10 @@ notifications:
1414
on_build_status_changed: false
1515

1616
install:
17+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
1718
# Download most recent Julia Windows binary
1819
- ps: (new-object net.webclient).DownloadFile(
19-
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
20+
$env:JULIA_URL,
2021
"C:\projects\julia-binary.exe")
2122
# Run installer silently, output to C:\projects\julia
2223
- C:\projects\julia-binary.exe /S /D=C:\projects\julia

0 commit comments

Comments
 (0)