From 9db2a7d032c2f5774274cf3d8a38b7477c322ea3 Mon Sep 17 00:00:00 2001 From: Lzu Tao Date: Wed, 5 Jun 2019 21:55:49 +0700 Subject: [PATCH] Update all s3 URLs used on CI with subdomains --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f07808b0aa..a4464fc6b1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -33,12 +33,12 @@ install: # Download and install MINGW (32-bit) Write-Host "Installing MinGW (32-bit)..." -ForegroundColor Cyan Write-Host "Downloading installation package..." - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z -FileName mingw.7z + appveyor-retry appveyor DownloadFile https://rust-lang-ci.s3.amazonaws.com/i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z -FileName mingw.7z } elseif($env:MINGW_DIR -eq "mingw64") { # Download and install MINGW (64-bit) Write-Host "Installing MinGW (64-bit)..." -ForegroundColor Cyan Write-Host "Downloading installation package..." - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z -FileName mingw.7z + appveyor-retry appveyor DownloadFile https://rust-lang-ci.s3.amazonaws.com/x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z -FileName mingw.7z } Write-Host "Extracting installation package..." 7z x -y mingw.7z -oC:\msys64 | Out-Null