mirror of
https://github.com/git/git.git
synced 2026-06-19 15:39:47 +02:00
0e7b51fed2
The Windows builds in GitLab CI use Chocolatey to install dependencies.
Unfortunately, Chocolatey seems to be very unreliable, which causes the
jobs to fail very regularly. This is a limitation that seems to be
somewhat known [1]:
As an organization, you want 100% reliability (or at least that
potential), and you may want full trust and control as well. This is
something you can get with internally hosted packages, and you are
unlikely to achieve from use of the Community Package Repository.
So using the Community Package Repository is kind of discouraged in case
one wants reliability. We _do_ want reliability though, and we cannot
easily switch to an enterprise license to fix this issue.
Introduce a new script that downloads and installs dependencies
directly. This has a couple of benefits:
- We can drop our dependency on Chocolatey completely, thus improving
reliability.
- We can easily cache the installers.
- We get direct control over the exact versions we install.
- Installing dependencies is sped up from roundabout 3 minutes to 1
minute.
[1]: https://docs.chocolatey.org/en-us/community-repository/community-packages-disclaimer/#summary
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
56 lines
2.0 KiB
PowerShell
Executable File
56 lines
2.0 KiB
PowerShell
Executable File
param(
|
|
[string]$DownloadDirectory = '.dependencies'
|
|
)
|
|
|
|
$ErrorActionPreference = 'Stop'
|
|
$ProgressPreference = 'SilentlyContinue'
|
|
|
|
$GitVersion = '2.54.0.windows.1'
|
|
$MesonVersion = '1.11.0'
|
|
$RustVersion = '1.96.0'
|
|
|
|
New-Item -Path $DownloadDirectory -ItemType Directory -Force | Out-Null
|
|
New-Item -Path .git/info -ItemType Directory -Force | Out-Null
|
|
New-Item -Path .git/info/exclude -ItemType File -Force | Out-Null
|
|
Add-Content -Path .git/info/exclude -Value "/$DownloadDirectory"
|
|
|
|
function Get-Installer {
|
|
param(
|
|
[Parameter(Mandatory = $true)][string]$Name,
|
|
[Parameter(Mandatory = $true)][string]$Url
|
|
)
|
|
|
|
$path = Join-Path $DownloadDirectory $Name
|
|
if (-not (Test-Path $path)) {
|
|
Write-Host "Downloading $Url"
|
|
Invoke-WebRequest $Url -OutFile $path -TimeoutSec 300
|
|
}
|
|
return $path
|
|
}
|
|
|
|
function Invoke-Installer {
|
|
param(
|
|
[Parameter(Mandatory = $true)][string]$FilePath,
|
|
[Parameter(Mandatory = $true)][string[]]$ArgumentList
|
|
)
|
|
|
|
Write-Host "Running $FilePath $($ArgumentList -join ' ')"
|
|
$process = Start-Process -Wait -PassThru -FilePath $FilePath -ArgumentList $ArgumentList
|
|
if ($process.ExitCode -ne 0) {
|
|
throw "$FilePath failed with exit code $($process.ExitCode)"
|
|
}
|
|
}
|
|
|
|
$gitAssetVersion = $GitVersion -replace '\.windows\.\d+$', ''
|
|
$gitInstaller = Get-Installer "Git-Installer.exe" `
|
|
"https://github.com/git-for-windows/git/releases/download/v$GitVersion/PortableGit-$gitAssetVersion-64-bit.7z.exe"
|
|
Invoke-Installer $gitInstaller @('-y', '-o"C:\Program Files\Git"')
|
|
|
|
$mesonMsi = Get-Installer "meson.msi" `
|
|
"https://github.com/mesonbuild/meson/releases/download/$MesonVersion/meson-$MesonVersion-64.msi"
|
|
Invoke-Installer msiexec.exe @('/i', $mesonMsi, 'INSTALLDIR=C:\Meson', '/quiet', '/norestart')
|
|
|
|
$rustMsi = Get-Installer "rust.msi" `
|
|
"https://static.rust-lang.org/dist/rust-$RustVersion-x86_64-pc-windows-msvc.msi"
|
|
Invoke-Installer msiexec.exe @('/i', $rustMsi, 'INSTALLDIR=C:\Rust', 'ADDLOCAL=Rustc,Cargo,Std', '/quiet', '/norestart')
|