Commit bc4a3f17 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Work around to fix appveyor build (#11295)

* work around for appveyor connectivity issues

Unfortuantelly, this slows down our build :(

* review feedback
parent df5cb390
...@@ -40,8 +40,13 @@ if (Test-Path $dartSdkPath) { ...@@ -40,8 +40,13 @@ if (Test-Path $dartSdkPath) {
} }
New-Item $dartSdkPath -force -type directory | Out-Null New-Item $dartSdkPath -force -type directory | Out-Null
$dartSdkZip = "$cachePath\dart-sdk.zip" $dartSdkZip = "$cachePath\dart-sdk.zip"
Import-Module BitsTransfer # TODO(goderbauer): remove (slow and backwards-incompatible) appveyor work around
Start-BitsTransfer -Source $dartSdkUrl -Destination $dartSdkZip if (Test-Path Env:\APPVEYOR) {
curl $dartSdkUrl -OutFile $dartSdkZip
} else {
Import-Module BitsTransfer
Start-BitsTransfer -Source $dartSdkUrl -Destination $dartSdkZip
}
Write-Host "Unzipping Dart SDK..." Write-Host "Unzipping Dart SDK..."
If (Get-Command 7z -errorAction SilentlyContinue) { If (Get-Command 7z -errorAction SilentlyContinue) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment