Skip to content

Commit 6efa490

Browse files
staticfloatKeno
authored andcommitted
Update CI URLs to point to new caching infrastructure (#183)
1 parent 728f43d commit 6efa490

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,12 +1,12 @@
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"
3+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x86/0.4/julia-0.4-latest-win32.exe"
4+
- JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.4/julia-0.4-latest-win64.exe"
55
# The MPI tests with Julia 0.5 are currently broken. We don't quite
66
# know why; see <https://github.com/JuliaParallel/MPI.jl/issues/123>
77
# for the respective discussion.
8-
# - JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
9-
# - JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
8+
#- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
9+
#- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
1010

1111
branches:
1212
only:
@@ -20,9 +20,10 @@ notifications:
2020
on_build_status_changed: false
2121

2222
install:
23+
- ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12"
2324
# Download most recent Julia Windows binary
2425
- ps: (new-object net.webclient).DownloadFile(
25-
$("http://s3.amazonaws.com/"+$env:JULIAVERSION),
26+
$env:JULIA_URL,
2627
"C:\projects\julia-binary.exe")
2728
- ps: (new-object net.webclient).DownloadFile(
2829
"https://download.microsoft.com/download/D/7/B/D7BBA00F-71B7-436B-80BC-4D22F2EE9862/MSMpiSetup.exe",

0 commit comments

Comments
 (0)