Skip to content
This repository was archived by the owner on Apr 26, 2021. It is now read-only.

Commit 761160a

Browse files
authored
Merge pull request #4 from staticfloat/updated_ci_url
Update CI URLs to point to new caching infrastructure
2 parents a02834b + 79ddfc6 commit 761160a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

appveyor.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
environment:
22
matrix:
3-
- JULIAVERSION: "julialang/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
4-
- JULIAVERSION: "julialang/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
5-
- JULIAVERSION: "julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
6-
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
7-
# - JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
8-
# - JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
3+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
4+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
5+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
6+
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
97

108
branches:
119
only:
@@ -19,9 +17,10 @@ notifications:
1917
on_build_status_changed: false
2018

2119
install:
20+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
2221
# Download most recent Julia Windows binary
2322
- ps: (new-object net.webclient).DownloadFile(
24-
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
23+
$env:JULIA_URL,
2524
"C:\projects\julia-binary.exe")
2625
# Run installer silently, output to C:\projects\julia
2726
- C:\projects\julia-binary.exe /S /D=C:\projects\julia

0 commit comments

Comments
 (0)