gitlab-ci: Install 7-Zip using the .msi

So we don't need cmake to extract a file.
This commit is contained in:
Nick Wellnhofer 2022-09-06 18:32:55 +02:00
parent fec85df14d
commit 7ab3228f21
2 changed files with 3 additions and 6 deletions

View File

@ -70,7 +70,6 @@ clang:asan:
key: "$MSYSTEM"
paths:
- libxml2-build/xmlconf/
- 7za.exe
mingw:w64-x86_64:shared:
extends: .mingw
@ -164,7 +163,6 @@ cmake:linux:clang:static:
key: "$MSYSTEM"
paths:
- libxml2-build/xmlconf/
- 7za.exe
artifacts:
paths:
- libxml2-$Env:CI_COMMIT_SHORT_SHA-$Env:MSYSTEM-$Env:SUFFIX.7z
@ -238,7 +236,6 @@ cmake:mingw:w64-x86_64:static:
paths:
- cmake-$Env:CMAKE_VERSION-win64-x64/
- libxml2-build/xmlconf/
- 7za.exe
artifacts:
paths:
- libxml2-$Env:CI_COMMIT_SHORT_SHA-$Env:CMAKE_GENERATOR_TOOLSET-$Env:CMAKE_GENERATOR_PLATFORM-$Env:SUFFIX.7z

View File

@ -1,4 +1,4 @@
if (-not (Test-Path 7za.exe)) {
Invoke-WebRequest -Uri https://www.7-zip.org/a/7z1900-extra.7z -OutFile 7z1900-extra.7z
cmake -E tar xf 7z1900-extra.7z 7za.exe
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
}