Skip to content

Commit 0294044

Browse files
Merge pull request #46 from juliangehring/ci-url
Update CI URLs to point to new caching infrastructure
2 parents 1d2caf6 + cf4d777 commit 0294044

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.appveyor.yml

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

66
notifications:
77
- provider: Email
@@ -10,9 +10,10 @@ notifications:
1010
on_build_status_changed: false
1111

1212
install:
13+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
1314
# Download most recent Julia Windows binary
1415
- ps: (new-object net.webclient).DownloadFile(
15-
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
16+
$env:JULIA_URL,
1617
"C:\projects\julia-binary.exe")
1718
# Run installer silently, output to C:\projects\julia
1819
- C:\projects\julia-binary.exe /S /D=C:\projects\julia

0 commit comments

Comments
 (0)