Skip to content

Commit 4aadcda

Browse files
authored
Merge pull request #121 from staticfloat/ci_url
Update CI URLs to point to new caching infrastructure
2 parents dfa88a1 + 8ba89ff commit 4aadcda

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

appveyor.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
environment:
22
matrix:
3-
- JULIAVERSION: "julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
4-
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
5-
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
6-
- 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"
77

88
branches:
99
only:
1010
- master
1111
- /release-.*/
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)