Skip to content

Commit 0dbd7f7

Browse files
authored
Merge pull request #18 from staticfloat/updated_ci_url
Update CI URLs to point to new caching infrastructure
2 parents 32feef4 + 408a451 commit 0dbd7f7

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: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
4-
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
3+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
4+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
55

66
branches:
77
only:
@@ -15,9 +15,10 @@ notifications:
1515
on_build_status_changed: false
1616

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

0 commit comments

Comments
 (0)