2023-12-14 18:03:19 +00:00
|
|
|
Set-StrictMode -Version Latest
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$ProgressPreference = "SilentlyContinue"
|
|
|
|
|
|
|
|
Write-Output "Downloading cloudflare go..."
|
|
|
|
|
|
|
|
Set-Location "$Env:Temp"
|
|
|
|
|
|
|
|
git clone -q https://github.com/cloudflare/go
|
|
|
|
Write-Output "Building go..."
|
|
|
|
cd go/src
|
2024-07-22 08:30:04 +00:00
|
|
|
# https://github.com/cloudflare/go/tree/f4334cdc0c3f22a3bfdd7e66f387e3ffc65a5c38 is version go1.22.5-devel-cf
|
|
|
|
git checkout -q f4334cdc0c3f22a3bfdd7e66f387e3ffc65a5c38
|
2023-12-14 18:03:19 +00:00
|
|
|
& ./make.bat
|
|
|
|
|
2024-07-22 08:30:04 +00:00
|
|
|
Write-Output "Installed"
|