-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGet-Mutagen.ps1
44 lines (40 loc) · 1.69 KB
/
Get-Mutagen.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Usage: Get-Mutagen.ps1 -arch <x64|arm64>
param (
[ValidateSet("x64", "arm64")]
[Parameter(Mandatory = $true)]
[string] $arch
)
function Download-File([string] $url, [string] $outputPath, [string] $etagFile) {
Write-Host "Downloading '$url' to '$outputPath'"
# We use `curl.exe` here because `Invoke-WebRequest` is notoriously slow.
& curl.exe `
--progress-bar `
--show-error `
--fail `
--location `
--etag-compare $etagFile `
--etag-save $etagFile `
--output $outputPath `
$url
if ($LASTEXITCODE -ne 0) { throw "Failed to download $url" }
if (!(Test-Path $outputPath) -or (Get-Item $outputPath).Length -eq 0) {
throw "Failed to download '$url', output file '$outputPath' is missing or empty"
}
}
$goArch = switch ($arch) {
"x64" { "amd64" }
"arm64" { "arm64" }
default { throw "Unsupported architecture: $arch" }
}
# Download the mutagen binary from our bucket for this platform if we don't have
# it yet (or it's different).
$mutagenVersion = "v0.18.1"
$mutagenPath = Join-Path $PSScriptRoot "files\mutagen-windows-$($arch).exe"
$mutagenUrl = "https://storage.googleapis.com/coder-desktop/mutagen/$($mutagenVersion)/mutagen-windows-$($goArch).exe"
$mutagenEtagFile = $mutagenPath + ".etag"
Download-File $mutagenUrl $mutagenPath $mutagenEtagFile
# Download mutagen agents tarball.
$mutagenAgentsPath = Join-Path $PSScriptRoot "files\mutagen-agents.tar.gz"
$mutagenAgentsUrl = "https://storage.googleapis.com/coder-desktop/mutagen/$($mutagenVersion)/mutagen-agents.tar.gz"
$mutagenAgentsEtagFile = $mutagenAgentsPath + ".etag"
Download-File $mutagenAgentsUrl $mutagenAgentsPath $mutagenAgentsEtagFile