Hash : 7ab3228f Author : Date : 2022-09-06T18:32:55
gitlab-ci: Install 7-Zip using the .msi So we don't need cmake to extract a file.
Download
1 2 3 4
if (-not (Get-Command "7za.exe" -ErrorAction SilentlyContinue)) { Invoke-WebRequest -Uri https://www.7-zip.org/a/7z2201.msi -OutFile 7z2201.msi msiexec /i $Installer7Zip /qb }